Ma7mooD-JJSploit

Ragdoll Engine

May 29th, 2020
9,726
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.09 KB | None | 0 0
  1. local down = false
  2. local loop = game:GetService('RunService')
  3. local ws = game:GetService('Workspace')
  4. local players = game:GetService('Players')
  5. local player = players.LocalPlayer
  6. local mouse = player:GetMouse()
  7.  
  8. loop.Heartbeat:Connect(function()
  9. game:GetService("ReplicatedStorage").LocalRagdollEvent:Fire(false)
  10. if player.Character:FindFirstChild("Push") then
  11. ws[player.Name].Push.Enabled = true
  12. ws[player.Name].Push.PushEvent:FireServer()
  13. end
  14. if player.Character:FindFirstChild("ImpulseGrenade") then
  15. ws[player.Name].ImpulseGrenade.Enabled = true
  16. end
  17. end)
  18.  
  19. mouse.Button1Down:connect(function()
  20. down = true
  21. mouse.Button1Up:connect(function()
  22. down = false
  23. end)
  24. while wait() do
  25. if down and
  26. player.Character:FindFirstChild("ImpulseGrenade") and
  27. player.Character:FindFirstChild("ImpulseGrenade").Enabled == true then
  28. player.Character.ImpulseGrenade:Activate()
  29. else
  30. break
  31. end
  32. end
  33. end)
  34.  
  35. print('Executed Ragdoll Engine Script! by gabe#0002')
Add Comment
Please, Sign In to add comment