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 4 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 — 4y
0
yes u can FixRobloxz 61 — 4y

1 answer

Log in to vote
3
Answered by 4 years ago

You can. For Example:

local TextLabel = --Your Billboard GUI Text

game.Players.PlayerAdded:Connect(function(Player)
    Player.Chatted:Connect(function(Chat)
        if Chat == "/e DIE" --[[Your Command]] then
            TextLabel.Text = "lol help"
        end
    end)
end)

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

Ad

Answer this question