Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- gui
- loadstring(game:HttpGet(('https://gitlab.com/Tsuniox/lua-stuff/-/raw/master/RagdollEngineGUI.lua'),true))()
- -- car
- --https://www.roblox.com/catalog/4435389917/Eltoria-RX750
- loadstring(game:HttpGet('https://raw.githubusercontent.com/MonkoTubeYT/carscript/master/!carscript.lua',true))()
- --fling push
- local Animation = Instance.new("Animation")
- Animation.AnimationId = "rbxassetid://1984283994"
- Instance = Instance.new("Tool", game:GetService("Players").LocalPlayer.Backpack)
- Instance.RequiresHandle = false
- Instance.Activated:connect(
- function()
- if game:GetService("Players").LocalPlayer.Character:WaitForChild("Humanoid").RigType == Enum.HumanoidRigType.R15 then
- game:GetService("Players").LocalPlayer.Character:WaitForChild("Humanoid"):LoadAnimation(Animation):Play()
- for i, v in pairs(game:GetService("Players"):GetDescendants()) do
- if v:IsA("RemoteEvent") and v.Name == "PushEvent" then
- v:FireServer()
- end
- end
- else
- for i, v in pairs(game:GetService("Players"):GetDescendants()) do
- if v:IsA("RemoteEvent") and v.Name == "PushEvent" then
- v:FireServer()
- end
- end
- end
- end
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement