this is a local script because it's in a gui
01 | function Clicked() |
02 |
03 |
04 | local PS = game:GetService( "Players" ) |
05 |
06 | local ID = PS:GetNameFromUserIdAsync(script.Parent.Parent.CodeName.Text) |
07 |
08 |
09 | PS:GetHumanoidDescriptionFromUserId(ID) |
10 |
11 |
12 | --but how the hell do i load it on to a character based off of the text in a text box like if i put in a player name i want them to load in a character and stuff--- |
13 |
14 |
15 |
16 |
17 | end |
18 |
19 |
20 | script.Parent.MouseButton 1 Click:Connect(Clicked) |