So sometimes I press play and it works and sometimes it doesnt. This is a serverscript inside of serverscriptservice btw
Players.PlayerAdded:Connect(function(plr)
plr.CharacterAdded:Connect(function(char)
local hum = char:WaitForChild("Humanoid")
local torso = char:WaitForChild("Torso")
local rightArm = char:WaitForChild("Right Arm")
local leftArm = char:WaitForChild("Left Arm")
--
char:SetAttribute("Equipped", false)
char:SetAttribute("CurrentWeapon", "Fists")
char:SetAttribute("Combo", 1)
char:SetAttribute("Stunned", false)
char:SetAttribute("Swing", false)
char:SetAttribute("Attacking", false)
char:SetAttribute("IsParrying", false)
char:SetAttribute("IsBlocking", false)
char:SetAttribute("IsSprinting", false)
char:SetAttribute("IsWalking", true)
char:SetAttribute("IsKnocked", false)
char.Parent = workspace.Characters
end)
end)