Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Anti Fling OFF
- local Players = game:GetService("Players")
- local Player = Players.LocalPlayer
- -- Restore collisions for all players' root parts
- for _, CoPlayer in pairs(Players:GetPlayers()) do
- if CoPlayer ~= Player and CoPlayer.Character then
- local rootPart = CoPlayer.Character:FindFirstChild("HumanoidRootPart")
- if rootPart then
- rootPart.CanCollide = true
- end
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement