-- OPEN SOURCE local backpack = game.Players.LocalPlayer.Backpack local Tool = Instance.new("Tool") Tool.Name = "Bloxy Cola" Tool.TextureId = "rbxassetid://10472127" Tool.Parent = backpack local handle = Instance.new("Part") handle.Name = "Handle" handle.Size = Vector3.new(1, 1, 1) local mesh = Instance.new("SpecialMesh") mesh.MeshId = "rbxassetid://10470609" mesh.TextureId = "rbxassetid://10470600" mesh.Parent = handle handle.Parent = Tool local DrinkSound = Instance.new("Sound") DrinkSound.SoundId = "http://www.roblox.com/asset/?id=10722059" DrinkSound.Parent = Tool local OpenSound = Instance.new("Sound") OpenSound.SoundId = "http://www.roblox.com/asset/?id=10721950" OpenSound.Parent = Tool local enabled = true local speedBoostMultiplier = 1.5 local boostDuration = 2 function onActivated() if not enabled then return end enabled = false 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) DrinkSound:Play() while DrinkSound.IsPlaying do wait(0.1) end local character = Tool.Parent local humanoid = character:FindFirstChild("Humanoid") if humanoid then humanoid.Health = math.min(humanoid.Health + 5, humanoid.MaxHealth) local originalWalkSpeed = humanoid.WalkSpeed humanoid.WalkSpeed = originalWalkSpeed * speedBoostMultiplier wait(boostDuration) humanoid.WalkSpeed = originalWalkSpeed end Tool.GripForward = Vector3.new(-.976,0,-0.217) Tool.GripPos = Vector3.new(0.03,0,0) Tool.GripRight = Vector3.new(.217,0,-.976) Tool.GripUp = Vector3.new(0,1,0) enabled = true end function onEquipped() OpenSound:play() end Tool.Activated:connect(onActivated) Tool.Equipped:connect(onEquipped)