of     1   

iAduriteX
#225383333Tuesday, September 19, 2017 9:21 PM GMT

I honestly don't know how to make this work with FE on. If no one can help me, I guess I'll have to make my game non-FE. I'd really appreciate it, if you could tell me how to make this script work with FE: Tool = script.Parent Light = script.Parent.Light Lightsaber = hashtags canDamage = script.Parent.canDamage debounce = false cooldown = 1 Player = game:GetService("Players").LocalPlayer Tool.Equipped:connect(function(mouse) mouse.Button1Down:connect(function() Light.Touched:connect(function(hit) if hit.Parent:FindFirstChild('Humanoid') and not debounce then if canDamage.Value == true then debounce = true hit.Parent.Humanoid.Health = hit.Parent.Humanoid.Health - 5 wait(2) debounce = false else canDamage.Value = false wait(cooldown) end end end) end) end)
iAduriteX
#225385765Tuesday, September 19, 2017 10:36 PM GMT

Bump
Furadious
#225385901Tuesday, September 19, 2017 10:41 PM GMT

Sorry but may I just say, making your game anti-chat filter can get you banned.
iAduriteX
#225387505Tuesday, September 19, 2017 11:25 PM GMT

:/ Bump

    of     1