Categories > Exploiting > Scripts >

Lagswitch Enable Key On/Off

Posts: 23

Threads: 4

Joined: Feb, 2021

Reputation: 0

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

 

  • 0

Added

@_realnickk bro how to put key to enable/disable

 

  • 0

Posts: 2082

Threads: 10

Joined: Sep, 2020

Reputation: 59

Replied

Exposed noob

  • 0

Discord : Doctor Doom#0550

cocotechnology

coco z4 is pog

vip

Posts: 309

Threads: 40

Joined: Jul, 2020

Reputation: 26

Replied

@_realnickk

 

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)
  • 0

WRD Account For Coco Z

Posts: 19

Threads: 1

Joined: Feb, 2021

Reputation: -10

Replied

Just use this program/application

https://wearedevs.net/d/Lagswitch

Works pretty much the same.

Plus its easier to use in my opinion

  • 0

Posts: 23

Threads: 4

Joined: Feb, 2021

Reputation: 0

Replied

@59339Thank You :D!!

 

  • 0

Added

@65549The lagswitch exploit on wearedevs does off your wifi on pc but the script dosen't even off the wifi

 

  • 0

Posts: 19

Threads: 1

Joined: Feb, 2021

Reputation: -10

Replied

@calinmoldova

Oh.

Nice

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )