The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Roblox 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. a=game.Players:FindFirstChild("OddPotion",true)
  2. local Players = game:GetService("Players")
  3. local localPlayer = Players.LocalPlayer
  4. local backpack = localPlayer:WaitForChild("Backpack")
  5.  
  6. local tool = Instance.new("Tool")
  7. tool.RequiresHandle = false
  8. tool.Parent = backpack
  9. tool.Name = "Invisible Object"
  10. tool.Equipped:Connect(function(mouse)
  11. mouse.Button1Down:Connect(function()
  12. if mouse.Target and mouse.Target.Parent then
  13. a.TransEvent:FireServer(mouse.Target,1)
  14. end
  15. end)
  16. end)
  17. a=game.Players:FindFirstChild("OddPotion",true)
  18. local Players = game:GetService("Players")
  19. local localPlayer = Players.LocalPlayer
  20. local backpack = localPlayer:WaitForChild("Backpack")
  21.  
  22. local tool = Instance.new("Tool")
  23. tool.RequiresHandle = false
  24. tool.Parent = backpack
  25. tool.Name = "Visible Object"
  26. tool.Equipped:Connect(function(mouse)
  27. mouse.Button1Down:Connect(function()
  28. if mouse.Target and mouse.Target.Parent then
  29. a.TransEvent:FireServer(mouse.Target,0)
  30. end
  31. end)
  32. end)