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

Is it possible to create a chat command which changes a Billboard GUI's text?

Asked by 5 years ago

I've been trying but I either don't know enough about lua or it's not possible.

0
Show us your script, we wont make a script for you. HeyItzDanniee 252 — 5y
0
yes u can FixRobloxz 61 — 5y

1 answer

Log in to vote
3
Answered by 5 years ago

You can. For Example:

1local TextLabel = --Your Billboard GUI Text
2 
3game.Players.PlayerAdded:Connect(function(Player)
4    Player.Chatted:Connect(function(Chat)
5        if Chat == "/e DIE" --[[Your Command]] then
6            TextLabel.Text = "lol help"
7        end
8    end)
9end)

That script allows everyone to change the text to "lol help" if they type "/e DIE"

Ad

Answer this question