Categories > Exploiting > Scripts >
Lagswitch Enable Key On/Off
Posted
the script:
local NetSettings = settings().Network
local function Lag(On)
if On == true then
NetSettings.IncomingReplicationLag = math.huge
else
NetSettings.IncomingReplicationLag = 0
end
end
Lag(true) -- on, do false or nil for off
Tell me guys how to enable it and disable it with a key
Replied
Exposed noob
Cancel
Post
Discord : Doctor Doom#0550
Replied
He just poorly wrote the thread, he's actually asking how to make the lagswitch turn on or off with a key, he's not releasing the script and claiming it as his own.
To actually answer your question, i tried adding to the lagswitcher, now i am currently testing and editing this as i speak, but i think it works fine.
EDIT: Can confirm it works 100%
local Mouse = game.Players.LocalPlayer:GetMouse()
local ToggleNetFunc = false
local NetSettings = settings().Network
local function Lag(On)
if On == true then
NetSettings.IncomingReplicationLag = math.huge
else
NetSettings.IncomingReplicationLag = 0
end
end
Mouse.KeyDown:Connect(function(k)
if k == "z" then
if ToggleNetFunc == false then
ToggleNetFunc = true
Lag(true)
print("LagSwitch enabled.")
else
ToggleNetFunc = false
Lag(false)
print("LagSwitch disabled.")
end
end
end)
Cancel
Post
WRD Account For Coco Z
Replied
Just use this program/application
https://wearedevs.net/d/Lagswitch
Works pretty much the same.
Plus its easier to use in my opinion
Cancel
Post
Replied
@59339Thank You :D!!
Cancel
Post
Added
@65549The lagswitch exploit on wearedevs does off your wifi on pc but the script dosen't even off the wifi
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post