of     1   

zodiacsage
#215366687Wednesday, April 26, 2017 9:42 PM GMT

script.Parent.Equipped:connect(function(mouse) mouse.Button1Down:connect(function() local f = Instance.new("Part", game.Workspace) local handle = script.Parent.Handle f.Position = handle.Position f.CanCollide = false f.Transparency = 1 local fl = Instance.new("Fire", f) local bv = Instance.new("BodyVelocity", f) bv.Velocity = (mouse.hit.p - handle.Position).unit*100 local db = false f.Touched:connect(function(hit) if db then return end db = true if hit.Parent.Name == game.Players.LocalPlayer.Name then print("") else local hum = hit.Parent:FindFirstChild("Humanoid") if hum then hum.Health = hum.Health - 30 game:GetService("Debris"):AddItem(f,4) end end end) end) end) How do I make it do damage and debris doesn't work
zodiacsage
#215369244Wednesday, April 26, 2017 10:23 PM GMT

bump
Y0_dude
#215369459Wednesday, April 26, 2017 10:27 PM GMT

hum:TakeDamage(30)
zodiacsage
#215369948Wednesday, April 26, 2017 10:36 PM GMT

Doesn't work
LaeMVP
#215370265Wednesday, April 26, 2017 10:42 PM GMT

why not use a ray?
zodiacsage
#215423913Thursday, April 27, 2017 8:02 PM GMT

Idk how to use a ray
zodiacsage
#215425301Thursday, April 27, 2017 8:28 PM GMT

bump
zodiacsage
#215428956Thursday, April 27, 2017 9:24 PM GMT

bump2

    of     1