Advertisement
MayWeEnjoy

AntiFling Off

May 27th, 2025
17
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. -- Anti Fling OFF
  2.  
  3. local Players = game:GetService("Players")
  4. local Player = Players.LocalPlayer
  5.  
  6. -- Restore collisions for all players' root parts
  7. for _, CoPlayer in pairs(Players:GetPlayers()) do
  8. if CoPlayer ~= Player and CoPlayer.Character then
  9. local rootPart = CoPlayer.Character:FindFirstChild("HumanoidRootPart")
  10. if rootPart then
  11. rootPart.CanCollide = true
  12. end
  13. end
  14. end
  15.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement