#a Sign with players name on it

1 messages · Page 1 of 1 (latest)

soft plank
#

i ned help i wnt to maek a Sign with players name on it

quaint tapir
# soft plank i ned help i wnt to maek a Sign with players name on it

Surface Gui is your answer. Here is a tutorial for it: https://youtu.be/I6wsrRApuus?si=0_8sI6g4LqrZvPBg

📜Join my Discord Community if you want scripting help, participate in events/challenges, and make friends!
https://discord.gg/WC6kPu5W5P

🎨Watch My Full Roblox GUI Tutorial Series:
https://www.youtube.com/playlist?list=PLQ1Qd31Hmi3Xnlu8u9hCYClLurMQYJIrz

🔴Watch My Full Roblox ADVANCED Scripting Tutorial Series:
https://www.youtube.com/p...

▶ Play video
soft plank
#

yo

calm marshBOT
#

studio** You are now Level 1! **studio

soft plank
#

alr

#

but when a player join i want the name on it and profil avatar like you can see the profil on the sign

simple heron
#

BillboardGui

soft plank
#

ok

quaint tapir
# soft plank but when a player join i want the name on it and profil avatar like you can see ...

If you need more help regading gui here is a series that might help you. You don't have to watch it from the start to end. Just watch what you want to learn https://youtube.com/playlist?list=PLQ1Qd31Hmi3Xnlu8u9hCYClLurMQYJIrz&si=tGU_ukcQWZfXEvPR

quaint tapir
soft plank
#

?

#

wym

quaint tapir
#

Thats how you get the Profile Picture of a player

soft plank
#

so shud i use SurfaceGui for it?

quaint tapir
#

Depends. Where do you want your Gui to be

soft plank
#

on a sign

quaint tapir
soft plank
#

idk a normal standing in you bass so you can see the player name and picture

quaint tapir
soft plank
#

ok

calm marshBOT
#

studio** You are now Level 2! **studio

soft plank
#

adn wher do i paste the scrpt

#

in the script?

#

i use Surface gui and what now ImageButton??

#

oh mb ImageLabel

#

wha tdo i do whit this ImageLabel.Image = "rbxthumb://type=AvatarHeadShot&id=".. Player.UserId.. "&w=420&h=420"

quaint tapir
soft plank
#

can you join me ??

quaint tapir
soft plank
#

in game

#

roblox studio

#

ok

#

bc idk what you meannann

quaint tapir
#

I don't have Team Create. And im not Verifying my acc

soft plank
#

why

#

oh

#

ok

quaint tapir
#

https://youtu.be/I6wsrRApuus?si=B70Xb9HFQPGFWi7F Watch this tutorial and try to make the Gui first

📜Join my Discord Community if you want scripting help, participate in events/challenges, and make friends!
https://discord.gg/WC6kPu5W5P

🎨Watch My Full Roblox GUI Tutorial Series:
https://www.youtube.com/playlist?list=PLQ1Qd31Hmi3Xnlu8u9hCYClLurMQYJIrz

🔴Watch My Full Roblox ADVANCED Scripting Tutorial Series:
https://www.youtube.com/p...

▶ Play video
soft plank
#

Now

quaint tapir
#

Now you need to detect when a player joins using the Players Service event .PlayerAdded and change the ImageLabels Image to this:

#
ImageLabel.Image = "rbxthumb://type=AvatarHeadShot&id=".. Player.UserId.. "&w=420&h=420"
soft plank
#

do i make a script

quaint tapir
#

Yea

soft plank
#

ok

#

adn add this

#

in what ServerScriptService

#

?

quaint tapir
#

I mean you can do that

soft plank
#

or

#

in the imagelabel?

quaint tapir
#

You can do that too

soft plank
#

but the text i want when a player join the player name is gona be in the sign

quaint tapir
soft plank
#

i want like grow a garden sign

#

but not the like button

#

??

shell nimbus
#

Set the size property of the text label to 1,0,1,0

#

then make a script either inside the sign or if you have a “Main” script

#

make it say

#

game.Players.PlayerAdded:Connect(function(plr)
Workspace.Sign.TextPart.SurfaceGui.Text = plr.Name.. “‘s plot!”
end)

#

this runs every time a player joins the game!

#

make sure everything is named accordingly

#

and if you have only a certain amount of plots don’t forget to set the server size

modest idol
#

Make sure you have a sign setup like this somewhere in the workspace. You don't need the UIListLayout unless you want everything to be automacially arranged. Make sure both parts in the sign have a seperate name. Then make a script in ServerScriptService or under your sign.

Then do something like this (dont forgot to grab ur objects somewhere in the script)

game.Players.PlayerAdded:Connect(function(Player)
    local PFP = game.Players:GetUserThumbnailAsync(
        Player.UserId,
        Enum.ThumbnailType.AvatarBust,
        Enum.ThumbnailSize.Size420x420
    )
    
    PlayerPFP.Image = PFP
    PlayerName.Text = "@"..Player.Name.."'s Plot"
end)
dusty needle