Advertisement
EFTPMC

Car & Ragdoll Engine

Jan 24th, 2021
35,561
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.28 KB | None | 0 0
  1. -- gui
  2. loadstring(game:HttpGet(('https://gitlab.com/Tsuniox/lua-stuff/-/raw/master/RagdollEngineGUI.lua'),true))()
  3.  
  4. -- car
  5. --https://www.roblox.com/catalog/4435389917/Eltoria-RX750
  6. loadstring(game:HttpGet('https://raw.githubusercontent.com/MonkoTubeYT/carscript/master/!carscript.lua',true))()
  7.  
  8. --fling push
  9. local Animation = Instance.new("Animation")
  10. Animation.AnimationId = "rbxassetid://1984283994"
  11.  
  12. Instance = Instance.new("Tool", game:GetService("Players").LocalPlayer.Backpack)
  13. Instance.RequiresHandle = false
  14.  
  15. Instance.Activated:connect(
  16. function()
  17. if game:GetService("Players").LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
  18. game:GetService("Players").LocalPlayer.Character:WaitForChild("Humanoid"):LoadAnimation(Animation):Play()
  19. for i, v in pairs(game:GetService("Players"):GetDescendants()) do
  20. if v:IsA("RemoteEvent") and v.Name == "PushEvent" then
  21. v:FireServer()
  22. end
  23. end
  24. else
  25. for i, v in pairs(game:GetService("Players"):GetDescendants()) do
  26. if v:IsA("RemoteEvent") and v.Name == "PushEvent" then
  27. v:FireServer()
  28. end
  29. end
  30. end
  31. end
  32. )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement