TheUnknownDiscord

heal soda

Aug 28th, 2021 (edited)
91
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 Grape"
  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=5921670361"
  12. Mesh.Scale = Vector3.new(1.2, 1.2, 1.2)
  13. local Heal = Instance.new("Sound", Cola)
  14. Heal.SoundId = "rbxassetid://186883063"
  15. Heal.Volume = 1.5
  16. local equipped = Instance.new("Sound", Cola)
  17. equipped.SoundId = "rbxassetid://10721950"
  18. equipped.Volume = 1
  19. local isTouched = false
  20. local function healPlayer()
  21. local humanoid = owner.Character:FindFirstChildWhichIsA("Humanoid")
  22. if humanoid then
  23. if not isTouched then
  24. isTouched = true
  25. if humanoid.Health ~= 0 then
  26. humanoid.Health = humanoid.Health + 25
  27. Heal:Play()
  28. wait(0.5)
  29. isTouched = false
  30. end
  31. end
  32. end
  33. end
  34.  
  35. Tool.Activated:connect(healPlayer)
  36.  
  37. Tool.Activated:connect(function()
  38. Tool.GripForward = Vector3.new(0,-.759,-.651)
  39. Tool.GripPos = Vector3.new(1.5,-.5,.3)
  40. Tool.GripRight = Vector3.new(1,0,0)
  41. Tool.GripUp = Vector3.new(0,.651,-.759)
  42. wait(0.85)
  43. Tool.GripForward = Vector3.new(-.976,0,-0.217)
  44. Tool.GripPos = Vector3.new(0.03,0,0)
  45. Tool.GripRight = Vector3.new(.217,0,0)
  46. Tool.GripUp = Vector3.new(0,1,0)
  47. end)
  48.  
  49. Tool.Equipped:Connect(function()
  50. equipped:Play()
  51. end)
Add Comment
Please, Sign In to add comment