wannasree1234

lag swicht script roblox 2021 pastebin

Oct 14th, 2021 (edited)
26
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.72 KB | None | 0 0
  1.  
  2. setting = settings().Network
  3. local Effect = Instance.new("ColorCorrectionEffect")
  4. Effect.Parent = game.Lighting
  5. Effect.Saturation = -1
  6. Effect.Brightness = 0
  7. Effect.Contrast = 0
  8.  
  9.  
  10. Effect.Enabled = false
  11. function onKeyPress(inputObject, gameProcessedEvent)
  12. if inputObject.KeyCode == Enum.KeyCode.LeftControl then
  13.  
  14. Effect.Enabled = true
  15. setting.IncomingReplicationLag = 1000
  16. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = game.Players.LocalPlayer.Character.Humanoid.WalkSpeed * 3
  17. wait(9)
  18. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  19. Effect.Enabled = false
  20. setting.IncomingReplicationLag = 0
  21.  
  22. end
  23. end
  24.  
  25. game:GetService("UserInputService").InputBegan:connect(onKeyPress)
Add Comment
Please, Sign In to add comment