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

Starter face script? ROBLOX (join and be given a face) specific player [closed]

Asked by
Txymar -3
6 years ago

I've been trying to make it so if a certain player joins the game, they will get a custom face (decal id) and not lose it when they rejoin or die.

Closed as Not Constructive by hiimgoodpack and Goulstem

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by
Mayk728 855 Moderation Voter
6 years ago

Really simple. Just create a script and put it into StarterPlayer > StarterCharacterScripts. What that does is everytime the player joins, it will clone that script into the player and it will stay everytime they respawn or rejoin etc. Now, you want the script to change the player's face.

Here's what you'll have to do:

local Character = script.Parent
local Head = Character:WaitForChild('Head')
wait(1)
Head.face.Texture = 'rbxassetid://'

Make sure the script is in StarterCharacterScripts, or else this will NOT work. Also, after rbxassetid:// you have to input the ID of the face next to it. If it doesn't work, you might have to subtract the ID by 1. So 1234 would become 1233. The ID should look like this: rbxassetid://1233

Ad