-- LocalScript inside StarterPlayer > StarterPlayerScripts local Players = game:GetService("Players") local player = Players.LocalPlayer -- Create ScreenGui local screenGui = Instance.new("ScreenGui") screenGui.Parent = player:WaitForChild("PlayerGui") -- Create Button local button = Instance.new("TextButton") button.Size = UDim2.new(0, 200, 0, 50) button.Position = UDim2.new(0.5, -100, 0.05, 0) -- Center top button.Text = "Trip" button.TextScaled = true button.BackgroundColor3 = Color3.fromRGB(255, 100, 100) button.Parent = screenGui -- Button Function button.MouseButton1Click:Connect(function() local character = player.Character or player.CharacterAdded:Wait() local humanoid = character:FindFirstChildOfClass("Humanoid") if humanoid then -- Trip (fall down) humanoid:ChangeState(Enum.HumanoidStateType.FallingDown) -- Stay on ground for 5 seconds task.wait(5) -- Force stand back up humanoid:ChangeState(Enum.HumanoidStateType.GettingUp) end end)