
1.6k Views
Description
• Remote/Code Player • Put SPEED To Loop • Start/Unstart
Comments
4

Offline
gabrielmcglothlin18 10 months ago
-- LocalScript inside StarterGui
local player = game.Players.LocalPlayer
local playerGui = player:WaitForChild("PlayerGui")
-- Create ScreenGui
local screenGui = Instance.new("ScreenGui")
screenGui.ResetOnS* = false -- Keeps GUI after res*
screenGui.Parent = playerGui
-- Create Lag Button
local button = Instance.new("TextButton")
button.Size = UDim2.new(0, 80, 0, 40) -- Small size
button.Position = UDim2.new(1, -90, 0.5, -20) -- Right side, vertically centered
button.Text = "Lag"
button.TextScaled = true
button.Parent = screenGui
-- Freeze function
local function fakeLag(seconds)
local start = tick()
while tick() - start < seconds do
-- Busy-wait to simulate freeze
end
end
-- Connect click
button.MouseButton1Click:Connect(function()
fakeLag(1) -- Freeze for 1 second
end)
Offline
Defyz 10 months ago
@gabrielmcglothlin18
CHATGPT LoL
Offline
krugnoodles 4 months ago
yo you make such great things bro
krugnoodlesyo you make such great things bro
Offline
Defyz 4 months ago
@krugnoodles thx
![[🎉 RELEASE] Anime Astral Simulator](/images/script/113236157544232-1780333729144.png)
Voxle Hub
