Answers for "how to change the player's avatar roblox"

1

how to change the player's avatar to the blocky in roblox

while true do
	wait()
	c=game.Workspace:getChildren()
	for i = 1, #c do
		cc=c[i]:getChildren()
		for ii = 1, #cc do
			if cc[ii].className=="CharacterMesh" then
				cc[ii]:Remove()
			end
		end
	end
end
Posted by: Guest on June-18-2021

Code answers related to "how to change the player's avatar roblox"

Browse Popular Code Answers by Language