Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Tool = Instance.new("Tool")
- Tool.Name = "Bloxy Cola Cherry"
- Cola = Instance.new("Part")
- Cola.Name = "Handle"
- Cola.Parent = Tool
- Tool.Parent = owner.Character
- Mesh = Instance.new("SpecialMesh")
- Cola.Size = Vector3.new(1, 1.2, 2)
- Mesh.Parent = Cola
- Mesh.MeshId = "http://www.roblox.com/asset/?id=10470609"
- Mesh.TextureId = "http://www.roblox.com/asset/?id=17646170"
- Mesh.Scale = Vector3.new(1.2, 1.2, 1.2)
- local Shield = Instance.new("Sound", Cola)
- Shield.SoundId = "rbxassetid://2111336915"
- Shield.Volume = 1.5
- local equipped = Instance.new("Sound", Cola)
- equipped.SoundId = "rbxassetid://10721950"
- equipped.Volume = 1
- local isTouched = false
- local function healPlayer()
- local humanoid = owner.Character:FindFirstChildWhichIsA("Humanoid")
- if humanoid then
- if humanoid.Health ~= 0 then
- humanoid.MaxHealth = humanoid.MaxHealth + 25
- humanoid.Health = humanoid.Health + 12.5
- Shield:Play()
- end
- end
- end
- Tool.Activated:connect(healPlayer)
- Tool.Activated:connect(function()
- Tool.GripForward = Vector3.new(0,-.759,-.651)
- Tool.GripPos = Vector3.new(1.5,-.5,.3)
- Tool.GripRight = Vector3.new(1,0,0)
- Tool.GripUp = Vector3.new(0,.651,-.759)
- wait(1.5)
- Tool.GripForward = Vector3.new(-.976,0,-0.217)
- Tool.GripPos = Vector3.new(0.03,0,0)
- Tool.GripRight = Vector3.new(.217,0,0)
- Tool.GripUp = Vector3.new(0,1,0)
- end)
- Tool.Equipped:Connect(function()
- equipped:Play()
- end)
Add Comment
Please, Sign In to add comment