Mikeyusespastebin

Untitled

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