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?
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"