-- Simple GUI for Mobile local ScreenGui = Instance.new("ScreenGui", game.CoreGui) local Button = Instance.new("TextButton", ScreenGui) Button.Size = UDim2.new(0, 150, 0, 50) Button.Position = UDim2.new(0, 10, 0.5, 0) Button.BackgroundColor3 = Color3.fromRGB(0, 0, 0) Button.TextColor3 = Color3.fromRGB(255, 0, 0) Button.Text = "Ragdoll Toggle" Button.Draggable = true Button.MouseButton1Click:Connect(RagdollToggle)

: This is a server-sided script, meaning when you ragdoll or use the tool to throw yourself around, other players in the server can see the effect, making it ideal for "messing around" or trolling.

-- OG Physics settings game.Workspace.Gravity = 196.2 settings().Physics.AllowSleep = false

Includes adjustable walk speed, jump power, and a "Fly" mode.

Scroll to Top