RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"fling all players"
-- server script for _, player in pairs(game.Players:GetPlayers()) do local character = player.Character if character then local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid:ChangeState(Enum.HumanoidStateType.FallingDown) humanoid.PlatformStand = false local rootPart = character:FindFirstChild("HumanoidRootPart") if rootPart then local force = Instance.new("BodyForce") force.Parent = rootPart force.Name = "FlingForce" force.force = Vector3.new(0, rootPart:GetMass() * 196.2, 0) end end end end