--// Sleepy Brianroots - Fast Steal GUI if game:GetService("CoreGui"):FindFirstChild("SleepyGui") then game:GetService("CoreGui").SleepyGui:Destroy() end local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "SleepyGui" gui.ResetOnSpawn = false gui.Parent = game:GetService("CoreGui") -- Main Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 280, 0, 160) frame.Position = UDim2.new(0.5, -140, 0.5, -80) frame.BackgroundColor3 = Color3.fromRGB(25, 25, 35) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = gui -- Corner local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 15) corner.Parent = frame -- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.BackgroundTransparency = 1 title.Text = "Sleepy Brianroots\n Fast Steal" title.TextColor3 = Color3.fromRGB(200, 200, 255) title.TextSize = 18 title.Font = Enum.Font.GothamBold title.Parent = frame -- Button local button = Instance.new("TextButton") button.Size = UDim2.new(0.6, 0, 0, 40) button.Position = UDim2.new(0.2, 0, 0.55, 0) button.Text = "Fast Steal" button.BackgroundColor3 = Color3.fromRGB(80, 0, 120) button.TextColor3 = Color3.fromRGB(255, 255, 255) button.TextSize = 18 button.Font = Enum.Font.GothamBold button.Parent = frame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 12) btnCorner.Parent = button -- Button Click button.MouseButton1Click:Connect(function() local char = player.Character or player.CharacterAdded:Wait() local hrp = char:WaitForChild("HumanoidRootPart") -- First Teleport hrp.CFrame = CFrame.new(-1, 3, 0) -- Wait 0.05s (50 ms) task.wait(0.05) -- Second Teleport hrp.CFrame = CFrame.new(1, 3, -25) end)