Palazikaka

Untitled

Mar 7th, 2020
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. --[[
  2.  
  3. R-Method Crash by Riptxde.
  4. May take up to 30 seconds for effects to show,
  5. Is in effect once all players seem to stop moving.
  6.  
  7. ]]--
  8.  
  9. --/* Locals
  10. local LP = game:GetService('Players').LocalPlayer
  11. if workspace:FindFirstChild(LP.Name) == nil then LP.CharacterAdded:Wait() end
  12. local Char = workspace[LP.Name]
  13. local Hat = Char['Humanoid']:GetAccessories()[1]
  14. local Handle = Hat['Handle']
  15.  
  16. --/* Tool Setup
  17. local Tool = Instance.new("Tool",LP.Backpack)
  18. Tool.Grip = Tool.Grip * CFrame.new(0,-100,0)
  19. Tool.Parent = Char
  20. Handle.Parent = Tool
  21.  
  22. game:GetService('RunService').Stepped:Connect(function()
  23. for _,Part in next, Char:GetChildren() do
  24. if Part:IsA('BasePart') then
  25. Part.CanCollide = false
  26. end
  27. end
  28. end)
  29.  
  30. local HPart; if Char:FindFirstChild('Right Arm') then
  31. HPart = 'Right Arm'
  32. else
  33. HPart = 'RightHand'
  34. end
  35.  
  36. --/* RightGrip Instance Crash
  37. for _ = 1,60000 do
  38. local Grip = Char[HPart].RightGrip:Clone()
  39. Grip.Parent = Char.Humanoid['Status']
  40. end
  41.  
  42. --/* Void Deletion
  43. wait(1) local CPart = Instance.new('Part',workspace)
  44. CPart.CanCollide = false
  45. CPart.Transparency = 1 CPart.Anchored = true
  46. CPart.CFrame = Char['Head'].CFrame
  47. workspace.Camera.CameraSubject = CPart
  48. warn('Shutdown Activated') Char['Humanoid'].Sit = true
  49. local BV = Instance.new('BodyVelocity', Char['HumanoidRootPart'])
  50. BV.MaxForce = Vector3.new(1e5,1e5,1e5)
  51. BV.Velocity = Vector3.new(0,-1e5,0)
  52. BV.P = 1e5
Add Comment
Please, Sign In to add comment