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

Is a Breakpoint Required in this Syntax?

Asked by 10 years ago

So if I have

local Message = Instance.new("Message")
Message.text = "Hello World"

wouldn't I have to set a breakpoint after that syntax if I wanted to switch to another local message?

1 answer

Log in to vote
0
Answered by
SimIcy 5
10 years ago

No and also i see on line 1 you didn't set were you wanted the message to be example it should be like

local Message = Instance.new("Message",  game.Workspace)
Message.text = "Hello World"
0
You don't have to put "game.Workspace" you can put "workspace" or "Workspace" fireboltofdeath 635 — 10y
Ad

Answer this question