When the sword hits the player I want it to print a random number between 1-10, but when a player does hit the player, it prints like 5 times when I only need it to print 1 time. How do I fix this? (btw this is only part of my script)
local torso=hit.Parent:findFirstChild("Torso")
local critchance = math.random(1,10)
print (critchance)
|