Robloxian_Scripter

Untitled

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