Phantom-Vakz

Roblox Lag Switch

Jun 30th, 2019
101
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. function enablelagswitch(inputObject)
  2. if inputObject.KeyCode == Enum.KeyCode.Q then
  3. game:GetService("NetworkClient").ClientReplicator:DisableProcessPackets()
  4. elseif inputObject.KeyCode == Enum.KeyCode.E then
  5. game:GetService("NetworkClient").ClientReplicator:EnableProcessPackets()
  6. end
  7. end
  8. game:GetService("UserInputService").InputBegan:connect(enablelagswitch)
Add Comment
Please, Sign In to add comment