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

How do I make a GUI with text on it?

Asked by 10 years ago

I want to know how to make a GUI with text on it. I also want somebody to help me with this!

2 answers

Log in to vote
0
Answered by 10 years ago

This is Scripting helpers. It is for scripting. What you requested has nothing to do with scripting. But heres a link to a ROBLOX wiki page explaining GUIs.

http://wiki.roblox.com/index.php/GUI_Guide

Ad
Log in to vote
0
Answered by
Ekkoh 635 Moderation Voter
10 years ago

The basic idea is to select StarterGui, insert a ScreenGui, insert a TextLabel or whatever GUI component you want into the ScreenGui. If you mean through a script, you call the Instance.new function with the class name of the instance.

local text = Instance.new("TextLabel")
text.Parent = script.Parent
-- code

Answer this question