So, I'm trying to make skins (players) like in TMM or MPB. But this does not work
local modl = game.ServerStorage.Model:Clone() game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:wait() local char = plr.Character char:Destroy() char = modl end
I can't come up with anything else...
Easy fix.
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:wait() local modl = game.ServerStorage.Model:Clone() modl.Parent = workspace modl:MakeJoints() local char = plr.Character char:Destroy() plr.Character = modl -- Edit to include animations modl.Animate.Disabled = true wait() modl.Animate.Disabled = false end
Line 4...shouldn't there be a number between the parenthesis for 'wait?'