Advertisement
TheUnknownDiscord

Bloxy Cola Bonk!

Aug 29th, 2021 (edited)
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. Tool = Instance.new("Tool")
  2. Tool.Name = "Bloxy Cola Bonk!"
  3. Cola = Instance.new("Part")
  4. Cola.Name = "Handle"
  5. Cola.Parent = Tool
  6. Tool.Parent = owner.Character
  7. Mesh = Instance.new("SpecialMesh")
  8. Cola.Size = Vector3.new(1, 1.2, 2)
  9. Mesh.Parent = Cola
  10. Mesh.MeshId = "http://www.roblox.com/asset/?id=10470609"
  11. Mesh.TextureId = "http://www.roblox.com/asset/?id=141515313"
  12. Mesh.Scale = Vector3.new(1.2, 1.2, 1.2)
  13. local Speed = Instance.new("Sound", Cola)
  14. Speed.SoundId = "rbxassetid://1907794746"
  15. Speed.Volume = 1.5
  16. local SpeedGone = Instance.new("Sound", Cola)
  17. SpeedGone.SoundId = "rbxassetid://1907795251"
  18. SpeedGone.Volume = 1.5
  19. local equipped = Instance.new("Sound", Cola)
  20. equipped.SoundId = "rbxassetid://10721950"
  21. equipped.Volume = 1
  22. local isTouched = false
  23.  
  24. local function healPlayer()
  25. local humanoid = owner.Character:FindFirstChildWhichIsA("Humanoid")
  26. if humanoid then
  27. if not isTouched then
  28. isTouched = true
  29. humanoid.WalkSpeed = "32"
  30. Speed:Play()
  31. wait(5)
  32. SpeedGone:Play()
  33. humanoid.WalkSpeed = "10"
  34. wait(1)
  35. humanoid.WalkSpeed = "16"
  36. isTouched = false
  37. end
  38. end
  39. end
  40.  
  41. Tool.Activated:connect(healPlayer)
  42.  
  43. Tool.Activated:connect(function()
  44. Tool.GripForward = Vector3.new(0,-.759,-.651)
  45. Tool.GripPos = Vector3.new(1.5,-.5,.3)
  46. Tool.GripRight = Vector3.new(1,0,0)
  47. Tool.GripUp = Vector3.new(0,.651,-.759)
  48. wait(0.5)
  49. Tool.GripForward = Vector3.new(-.976,0,-0.217)
  50. Tool.GripPos = Vector3.new(0.03,0,0)
  51. Tool.GripRight = Vector3.new(.217,0,0)
  52. Tool.GripUp = Vector3.new(0,1,0)
  53. end)
  54.  
  55. Tool.Equipped:Connect(function()
  56. equipped:Play()
  57. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement