Advertisement
Davodio

...

Feb 26th, 2018
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. --[[
  2. Fling editet script by Davodio
  3. Click on someone to make them mad xD!
  4. --]]
  5. print("GLITCHING AS FUCK! LOADED!")
  6. explode = true -- if u want them to explode or not
  7. local countdown = 12 -- seconds before the explosion if u have it on
  8. plr = game.Players.LocalPlayer
  9. char = plr.Character
  10. hum = char.Humanoid
  11. tool = Instance.new("HopperBin", plr.Backpack)
  12. tool.Name = "Time to glitch!"
  13. mouse = plr:GetMouse()
  14. flyspeed = 9999999999999999999999999999
  15.  
  16.  
  17. tool.Selected:connect(function()
  18. mouse.Button1Down:connect(function()
  19. if tool.Active == true and mouse.Target.Parent:FindFirstChild("Humanoid") or mouse.Target.Parent.Parent:FindFirstChild("Humanoid") or mouse.Target.Parent:FindFirstChild("Torso") then
  20. local torso = mouse.Target.Parent:FindFirstChild("Torso")
  21. local thum = torso.Parent:FindFirstChild("Humanoid")
  22. if thum ~= hum then
  23.  
  24. local humrootpart = torso.Parent:FindFirstChild("HumanoidRootPart")
  25. local bv = Instance.new("BodyVelocity")
  26. bv.MaxForce = Vector3.new(1e8,1e8,1e8)
  27. bv.Velocity = Vector3.new(flyspeed,flyspeed,flyspeed)
  28. bv.Parent = torso
  29.  
  30. local pe = Instance.new("ParticleEmitter", torso)
  31. pe.Texture = "rbxassetid://109251560"
  32. pe.Size = NumberSequence.new(0.5)
  33. pe.Lifetime = NumberRange.new(5,10)
  34. pe.Rate = 50
  35. pe.VelocitySpread = 45
  36. pe.Speed = NumberRange.new(10)
  37.  
  38. local stars = Instance.new("Sound", torso)
  39. stars.Volume = 10
  40. stars.SoundId = "rbxassetid://606936278"
  41. stars.TimePosition = 1.7
  42. stars:Play()
  43. if explode == true then
  44. local ex = Instance.new("Sound", torso)
  45. ex.Volume = 10
  46. ex.SoundId = "rbxassetid://141679994"
  47. ex.TimePosition = 23.5
  48. ex:Play()
  49. for i = 1,countdown do
  50. tool.Name = "Your done in " .. countdown - i .. "."
  51. wait(1)
  52. end
  53. tool.Name = "Fuck someone again m8!"
  54. local explosion = Instance.new("Explosion", torso)
  55. explosion.Position = torso.Position
  56. ex.TimePosition = 0.4
  57. ex:Play()
  58. stars:Stop()
  59. torso.Parent:BreakJoints()
  60. pe:Destroy()
  61. end
  62. end
  63. end
  64. end)
  65. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement