The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Ragdoll Engine script pastebin roblox
By Ragdoll Engine on 2024-09-19 08:00 am | Syntax: LUA | Views: 12



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1.  local lp = game:GetService("Players").LocalPlayer
  2.  
  3. spawn(function()
  4.     while wait(0.05) do
  5.         pcall(function()
  6.             for i, v in pairs(game:GetService("Players"):GetPlayers()) do
  7.                 local PlayerPos = lp.Character.HumanoidRootPart.Position
  8.                 local Range = (PlayerPos - v.Character.HumanoidRootPart.Position).magnitude
  9.                 if v ~= lp and v.Backpack:FindFirstChild("Push") and Range > 100 then
  10.                     v.Backpack.Push.PushEvent:FireServer()
  11.                 end
  12.             end
  13.         end)
  14.     end
  15. end)
  16.  
  17. lp.Character.Humanoid.WalkSpeed = 100
  18. lp.Character.Humanoid.JumpPower = 100
  19.  
  20. lp.Character["Local Ragdoll"]:Destroy()
  21. lp.Character.Controls:Destroy()
  22. lp.Character["State Handler"]:Destroy()
  23. lp.Character.LocalScript:Destroy()