Advertisement
Kapalsya123

FE time Stop script

Mar 3rd, 2022
62
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.87 KB | None | 0 0
  1. --RIGHT control, not left
  2. _G.key = Enum.KeyCode.LeftControl
  3.  
  4. loadstring(game:HttpGet("https://paste.gg/p/anonymous/cb1c7198b269449eb8a2cf8ced061bed/files/4a98e88f82ee47388b3030a7f000b34e/raw", true))()
  5.  
  6. setting = settings().Network
  7. local Effect = Instance.new("ColorCorrectionEffect")
  8. Effect.Parent = game.Lighting
  9. Effect.Saturation = -1
  10. Effect.Contrast = 0
  11. toggle = false
  12.  
  13. Effect.Enabled = false
  14. function onKeyPress(inputObject, gameProcessedEvent)
  15. if inputObject.KeyCode == Enum.KeyCode.RightControl then
  16. if toggle == false then
  17. setting.IncomingReplicationLag = 1000
  18. Effect.Enabled = true
  19. toggle = true
  20. else
  21. setting.IncomingReplicationLag = 0
  22. Effect.Enabled = false
  23. toggle = false
  24. end
  25.  
  26. end
  27. end
  28.  
  29. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
  30. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement