of     1   

Argon87
#45894041Thursday, April 21, 2011 11:22 AM GMT

How would I make a statue of myself in a 'Test Solo' visit? I am making different characters holding weapons/crouching etc etc.. I can change my clothes to look like that of which the characters are wearing and I hold the gun and crouch and everything. Then I try to copy the 'Player' model but it will not appear when I paste it into the workspace.
ServerLabs
#45902002Thursday, April 21, 2011 4:17 PM GMT

Hmm.. this seems like something you should post in "Scripting Helpers" instead. I'll try to help you out with this one though, I likeh scripts. Player = "Argon87" Char = game.Players[Player].Character function MakeBody() mod = Instance.new("Model", workspace) Clo = Char:GetChildren() for i=1, #Clo do if Clo[i].className == "Part" then copy = Clo[i]:Clone() copy.Parent = mod copy.Anchored = true end end end MakeBody() I came up with that in about 10 minutes, it's not perfect.
Argon87
#45902272Thursday, April 21, 2011 4:24 PM GMT

Nvm, next time, I should copy the parts, not the model of myself. :/

    of     1