ADVERTISEMENTREMOVE ADS
Game icon

Stop Time (clientsided)

a literal baseplate.
7 months ago
Script preview thumbnail
Script Preview

Description

this can be used in like any game of your choice! press right control to stop time also its

Features:

  • stop time! thats it

Tested with

ADVERTISEMENTREMOVE ADS
25 Lines • 633 Bytes
Raw
setting = settings().Network
local Effect = Instance.new("ColorCorrectionEffect")
Effect.Parent = game.Lighting
Effect.Saturation = -1
Effect.Brightness = 0
Effect.Contrast = 0
toggle = false
Effect.Enabled = false
function onKeyPress(inputObject, gameProcessedEvent)
if inputObject.KeyCode == Enum.KeyCode.RightControl then
if toggle == false then
setting.IncomingReplicationLag = 1000
Effect.Enabled = true
toggle = true
else
setting.IncomingReplicationLag = 0
Effect.Enabled = false
toggle = false
end
end
end
game:GetService("UserInputService").InputBegan:connect(onKeyPress)
ADVERTISEMENTREMOVE ADS

Comments

2 comments
to add a comment
Er

this script isnt mine btw!

0
0
ch

It's a pity that it's not yours But basically it works I wanted to ask you to add a button there so that it works normally on mobile devices

0
0
ADVERTISEMENTREMOVE ADS