jhoncena10026

trolled

Jan 7th, 2021 (edited)
58
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.37 KB | None | 0 0
  1. wait(5)
  2. local tool = Instance.new('Tool')
  3. local debounce = false
  4. tool.Parent = game.Players.jhoncena10026.Backpack
  5. tool.Name = 'Gernade'
  6. local handle = Instance.new('Part')
  7. handle.Name = 'Handle'
  8. handle.Parent = tool
  9. handle.Size = Vector3.new(1,1,1)
  10. handle.BrickColor = BrickColor.Green()
  11. local mesh = Instance.new('SpecialMesh')
  12. mesh.MeshId = 'http://www.roblox.com/asset/?id=166887416'
  13. mesh.Parent = handle
  14. tool.Activated:connect(function()
  15. if debounce then
  16.  
  17. else
  18. debounce = true
  19. local gernade = handle:Clone()
  20. gernade.Parent = game.Workspace
  21. gernade.Position = handle.Position + Vector3.new(0, 3, 0)
  22. handle.Transparency = 1
  23. local humanoidrootpart = tool.Parent.HumanoidRootPart
  24. local bodyforce = Instance.new('BodyForce')
  25. bodyforce.Parent = gernade
  26. local directionx = (humanoidrootpart.CFrame.lookVector.x * 75)
  27. local directionz = (humanoidrootpart.CFrame.lookVector.z * 75)
  28. bodyforce.Force = Vector3.new(directionx,(gernade.Mass * 3) * 85, directionz)
  29. wait(.35)
  30. bodyforce:Destroy()
  31. gernade.CanCollide = true
  32. wait(2.5)
  33. local kaboom = Instance.new('Explosion')
  34. kaboom.Parent = gernade
  35. kaboom.BlastRadius = 15
  36. kaboom.DestroyJointRadiusPercent = 7
  37. kaboom.Position = gernade.Position
  38. gernade.Anchored = true
  39. wait(0.8)
  40. gernade:Destroy()
  41. wait(3)
  42. handle.Transparency = 0
  43. debounce = false
  44. end
  45.  
  46. end)
Add Comment
Please, Sign In to add comment