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

How to do Rp Name/BIO Building?

Asked by 2 years ago

Hey I don't know how to make or script a rp anme and bio gui, if someone could please help me that would eb great!

0
Please try to provide some code you used previously. jasperagent 43 — 2y

1 answer

Log in to vote
0
Answered by 2 years ago

Try using BillboardGUIS and a normal GUI on the screen to change it.

funciton onClick()
    local Char = game.Players:GetPlayerFromUserId(game.Players.LocalPlayer.UserId)
    local BillboardGUI = Char:WaitForChild("Head"):WaitForChild("BillboardGui")
    local NameText = BillboardGUI:WaitForChild("TextLabel")
    NameText.Text = script.Parent.Parent.TextBox.Text
end)

script.Parent.MouseButton1Click:Connect(onClick)

something like that might work, just have to change the directories

0
Thanks, but it doesn't work TreaS2007 0 — 2y
Ad

Answer this question