Is their a way I would be able to make something that would be like a taser but the player does not hold a tool?
I know how to make a taser, but I want to know how I might be able to make a script that would allow players to click other players without holding a tool, but it would need a cooldown. Would I just be able to modify the script to make it work?
game.Players.PlayerAdded:Connect(function(player)
player.CharacterAdded:Wait()
local cd = Instance.new("ClickDetector", player.Character)
cd.MouseClick:Connect(function()
--tase code
end
end)