Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-1

Player Made into Noobs?

Asked by 10 years ago

I am making a game that involves a noob being captured by yours truly. But, I would like if YOU may also be a noob as well. If anyone could tell me how to make a script that takes off morphs, clothes and hats. But no body colours. Or colors as you Americans like it.

2 answers

Log in to vote
0
Answered by
samfun123 235 Moderation Voter
10 years ago

The code to remove everything but the players body colors would be :

This would be put in a localscript.

char = game:GetService("Players").LocalPlayer.Character

for _,v in pairs(char:GetChildren()) do
    if v:IsA("CharacterMesh") or v:IsA("Hat") or v:IsA("Shirt") or v:IsA("Pants") then
        v:Destroy()
    end
end

This would remove the players morphs or meshs, hats, clothes. It doesn't change the player to look like a noob.

If you have any questions, concerns or just need some help with this PM me on ROBLOX!

Ad
Log in to vote
0
Answered by 10 years ago

Despite the fact someone else has posted a script, this is not a request site. If you have a script you're writing but need help on it, post it. Don't just make requests for us to do, that's not our jobs.

Also, I'm English. Being British implies that you could be Welsh, Scottish, North Irish or English. And Scottish/Welsh/Irish do not like tea as much as us English :)

0
Well, MEH. I LIKE TEA. BritishTea1234 0 — 10y

Answer this question