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

Does anyone have a script that will turn the player in to a noob?

Asked by 3 years ago

So I'm makeing a ro-bio type game but makeing custom viruses. And I need a script that will turn the ro-bio npc in to a noob. It would just need to turn the npcs avatar in to a noob.

0
This is not a request site. Please make an attempt to do this before asking for help here IAmNotTheReal_MePipe 418 — 3y
0
Learn about the CharacterAppearanceID property in the player object IceyTazeForLife 253 — 3y
0
If you need advice on scripting, watch tutorials on youtube. An example I like is Alvin_Blox. He has a piggy tutorial series, and it contains information on how to change a character's appearance. IAmNotTheReal_MePipe 418 — 3y

1 answer

Log in to vote
0
Answered by 3 years ago

Something I like to do is put a noob in the ReplicatedStorage and then a part in the workspace. The part will have this script:

script.Parent.Touched:Connect(function(hit)
     if hit.Parent:FindFirstChild("Humanoid") then
          local character = game.ReplicatedStorage:FindFirstChild("Noob")
          character.Name = hit.Parent.Name

          game.Players:GetPlayerFromCharacter(hit.Parent).Character = character
          character.Parent = workspace
     end
end)

This script fires when the part is touched. If the object that touches it is in the player, it will make the player a noob.

Ad

Answer this question