of     1   

SquidShock
#175513607Sunday, October 04, 2015 1:46 PM GMT

Looking for a script where you spawn with no hat, yes as simple as that.
EllipticalCatten
#175515048Sunday, October 04, 2015 2:13 PM GMT

Put this script in ServerScriptService. game.Players.PlayerAdded:connect(function(player) player.CharacterAdded:connect(function(char) wait(1) for _,v in pairs(char:GetChildren()) do if v:IsA("Hat") then v:Destroy() end end end) end)
SquidShock
#175532012Sunday, October 04, 2015 5:43 PM GMT

Thank You, :D

    of     1