The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Remove Jumpscares | Keybinds For Door And Light script pastebin roblox
By Remove Jumpscares | Keybinds For Door And Light on 2024-09-22 08:00 am | Syntax: LUA | Views: 11



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. -- thank you to danielaity for offering the script on a v3rm post
  2. -- Locals
  3.  
  4. local player = game.Players.LocalPlayer
  5. local mouse = player:GetMouse()
  6. local left = game:GetService("Workspace")["NIGHT-6"].DoorButtons1.DoorButton.ClickDetector --change the number in night6 to whatever night you are on
  7. local right = game:GetService("Workspace")["NIGHT-6"].DoorButtons2.DoorButton.ClickDetector --change the number in night6 to whatever night you are on
  8. local lightleft = game:GetService("Workspace")["NIGHT-6"].DoorButtons1.LightButton.ClickDetector --change the number in night6 to whatever night you are on
  9. local lightright = game:GetService("Workspace")["NIGHT-6"].DoorButtons2.LightButton.ClickDetector --change the number in night6 to whatever night you are on
  10.  
  11. -- Settings
  12.  
  13. bindleft = "q" -- has to be lowercase change them to whatever you are comfortable with
  14. bindright = "r" -- has to be lowercase change them to whatever you are comfortable with
  15. bindlightleft = "o" -- has to be lowercase change them to whatever you are comfortable with
  16. bindlightright = "p" -- has to be lowercase change them to whatever you are comfortable with
  17.  
  18. -- Scripts
  19.  
  20. mouse.KeyDown:connect(function(key)
  21. if key == bindleft then
  22. fireclickdetector(left)
  23. end
  24. end)
  25.  
  26. mouse.KeyDown:connect(function(key)
  27. if key == bindright then
  28. fireclickdetector(right)
  29. end
  30. end)
  31.  
  32. mouse.KeyDown:connect(function(key)
  33. if key == bindlightleft then
  34. fireclickdetector(lightleft)
  35. end
  36. end)
  37.  
  38. mouse.KeyDown:connect(function(key)
  39. if key == bindlightright then
  40. fireclickdetector(lightright)
  41. end
  42. end)
  43.  
  44. --
  45.  
  46. game:GetService("Workspace").Status.Jumpscares.Value = false
  47. game:GetService("Players").LocalPlayer.PlayerGui.Scripts.JumpscareEvent:Destroy()



  • Recent Roblox Scripts