CalllMePasting

Lag Switch TROLL Script Pastebin

Jan 14th, 2022 (edited)
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. -- Creator is Ieatratz on youtube go check him out
  2. -- https://www.youtube.com/channel/UCcPNMtiJheM3Yz0Y1DUSYCg
  3. setting = settings().Network
  4. local Effect = Instance.new("ColorCorrectionEffect")
  5. Effect.Parent = game.Lighting
  6. Effect.Saturation = -1
  7. Effect.Brightness = 0
  8. Effect.Contrast = 0
  9. toggle = false
  10.  
  11. Effect.Enabled = false
  12. function onKeyPress(inputObject, gameProcessedEvent)
  13. if inputObject.KeyCode == Enum.KeyCode.RightControl then
  14. if toggle == false then
  15. setting.IncomingReplicationLag = 1000
  16. Effect.Enabled = true
  17. toggle = true
  18. else
  19. setting.IncomingReplicationLag = 0
  20. Effect.Enabled = false
  21. toggle = false
  22. end
  23.  
  24. end
  25. end
  26.  
  27. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Add Comment
Please, Sign In to add comment