Talk:Instance

Add topic
Active discussions

ya make like a list of stuff u can make using "Instance.new()".

Please continue to add on to this.

--N2KC 16:51, 20 February 2008 (CST)

P.S. I know there is more than "Instance.new()".

Testing

The scripts

local msg = Instance.new("Message")
msg.Parent = game.Workspace
msg.Text = "Hello."
wait(10)
msg:Remove()
local e = Instance.new("Explosion")
e.Parent = game.Workspace

and

local p = Instance.new("Part")
p.Parent = game.Workspace
p.Name = "Brick"
p.BrickColor = BrickColor.new(21)

work, but you have to be quick to see some of them. The explosion IS there, but you may have to spin your camera around. The brick may appear only briefly on the Explorer menu. The message script is obvious.MINDRAKER 12:57, 20 August 2008 (CDT)

Type Description

This page is linked to for the Instance type, but it's not describing that. This one needs to be renamed "Instance (Table)" perhaps. And an "Instance (Object)" page created here. It'd also be nice if the "Global Functions" reference on most object pages actually linked to a page with the list. --GoldenUrg 00:04, 26 April 2010 (UTC)

Suggestion

I suggest we just redirect this page to the Instance object and ignore the instance table. I know what you're going to tell me, and you're actually right, but it's just too much of a problem. 99.99999% of the pages that link to this should actually link to the Instance object, and changing them all is just too much work. We could just do like Wikipedia and offer an alternate article ("Instance" redirects here. For the able, see Instance (Table).), though. It would look like this:

"Help" redirects here. For the table, see Instance Table.

--JulienDethurens 23:34, 24 March 2012 (EDT)

Return to "Instance" page.