TheUnknownDiscord

cold soda

Aug 28th, 2021 (edited)
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. Tool = Instance.new("Tool")
  2. Tool.Name = "Bloxy Cola Ice"
  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=50973653"
  12. Mesh.Scale = Vector3.new(1.2, 1.2, 1.2)
  13. local Brrr = Instance.new("Sound", Cola)
  14. Brrr.SoundId = "rbxassetid://633759810"
  15. Brrr.Volume = 1.5
  16. local equipped = Instance.new("Sound", Cola)
  17. equipped.SoundId = "rbxassetid://10721950"
  18. equipped.Volume = 1
  19. local isTouched = false
  20.  
  21. local function healPlayer()
  22. local humanoid = owner.Character:FindFirstChildWhichIsA("Humanoid")
  23. if humanoid then
  24. if not isTouched then
  25. isTouched = true
  26. Brrr:Play()
  27. wait(1.5)
  28. isTouched = false
  29. end
  30. end
  31. end
  32.  
  33. Tool.Activated:connect(healPlayer)
  34.  
  35. Tool.Activated:connect(function()
  36. owner.Character.Humanoid.PlatformStand = true
  37. Tool.GripForward = Vector3.new(0,-.759,-.651)
  38. Tool.GripPos = Vector3.new(1.5,-.5,.3)
  39. Tool.GripRight = Vector3.new(1,0,0)
  40. Tool.GripUp = Vector3.new(0,.651,-.759)
  41. wait(1.5)
  42. Tool.GripForward = Vector3.new(-.976,0,-0.217)
  43. Tool.GripPos = Vector3.new(0.03,0,0)
  44. Tool.GripRight = Vector3.new(.217,0,0)
  45. Tool.GripUp = Vector3.new(0,1,0)
  46. owner.Character.Humanoid.PlatformStand = false
  47. end)
  48.  
  49. Tool.Equipped:Connect(function()
  50. equipped:Play()
  51. end)
Add Comment
Please, Sign In to add comment