--[[ WARNING: Heads up! This script has not been verified by ScriptBlox. Use at your own risk! ]] if game.GetService(game, 'UserInputService').KeyboardEnabled == true then for v = 1, 100 do print[[you don't need this (pc user)]] end game.GetService(game, 'StarterGui'):SetCore('DevConsoleVisible', true) return end LocalPlayer = game.GetService(game, 'Players').LocalPlayer Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait() Humanoid = Character.Humanoid LagController = Instance.new('ScreenGui', gethui and gethui() or game.GetService(game, 'Players').LocalPlayer:WaitForChild('PlayerGui')) LagController.Name = 'Lag Controller' LagController.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- Resized Frame to perfectly fit just the title and two buttons Frame = Instance.new('Frame', LagController) Frame.BorderSizePixel = 0 Frame.BackgroundColor3 = Color3.fromRGB(22, 24, 27) Frame.Size = UDim2.new(0.25, 0, 0.18, 0) Frame.Position = UDim2.new(0.375, 0, 0.4, 0) FrameCorner = Instance.new('UICorner', Frame) Title = Instance.new('TextLabel', Frame) Title.BorderSizePixel = 0 Title.TextSize = 18 Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255) Title.FontFace = Font.new('rbxasset://fonts/families/Arial.json', Enum.FontWeight.Bold, Enum.FontStyle.Normal) Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.BackgroundTransparency = 1 Title.Size = UDim2.new(1, 0, 0.4, 0) Title.Position = UDim2.new(0, 0, 0, 0) Title.Text = 'Lag Controller' Title.Name = 'Title' Laugh = Instance.new('TextButton', Frame) Laugh.BorderSizePixel = 0 Laugh.TextSize = 14 Laugh.AutoButtonColor = false Laugh.TextColor3 = Color3.fromRGB(255, 255, 255) Laugh.BackgroundColor3 = Color3.fromRGB(36, 40, 48) Laugh.FontFace = Font.new('rbxasset://fonts/families/Arial.json', Enum.FontWeight.Bold, Enum.FontStyle.Normal) Laugh.Size = UDim2.new(0.43, 0, 0.45, 0) Laugh.Text = 'LAUGH' Laugh.Name = 'Laugh' Laugh.Position = UDim2.new(0.05, 0, 0.45, 0) LaughCorner = Instance.new('UICorner', Laugh) LaughCorner.CornerRadius = UDim.new(0, 5) LagButton = Instance.new('TextButton', Frame) LagButton.BorderSizePixel = 0 LagButton.TextSize = 14 LagButton.TextColor3 = Color3.fromRGB(255, 255, 255) LagButton.BackgroundColor3 = Color3.fromRGB(36, 40, 48) LagButton.FontFace = Font.new('rbxasset://fonts/families/Arial.json', Enum.FontWeight.Bold, Enum.FontStyle.Normal) LagButton.Size = UDim2.new(0.43, 0, 0.45, 0) LagButton.Text = 'LAG' LagButton.Name = 'Lag' LagButton.Position = UDim2.new(0.52, 0, 0.45, 0) LagButtonCorner = Instance.new('UICorner', LagButton) LagButtonCorner.CornerRadius = UDim.new(0, 5) -- Hardcoded lag time to 1x LagTime = 1 Laugh.MouseButton1Click:Connect(function() Character.Animate.PlayEmote:Invoke'laugh' end) LagButton.MouseButton1Click:Connect(function() EndTime = os.clock() + LagTime repeat until os.clock() >= EndTime end) LocalPlayer.CharacterAdded:Connect(function(NewChar) Character = NewChar Humanoid = NewChar:WaitForChild'Humanoid' NewChar:WaitForChild'Humanoid'.AutoJumpEnabled = false end) Instance.new('UIDragDetector', Frame) Humanoid.AutoJumpEnabled = false