|
| 17 Dec 2012 06:47 PM |
I know that if you do m = Instance.new("Message", Workspace) that it makes it's parent Workspace.. but, if I did
m = Instance.new("Message", Workspace, 60) <-- What's the 60? a wait() time?
~SamuelKingx |
|
|
| Report Abuse |
|
|
|
| 17 Dec 2012 06:53 PM |
No, sadly, but you could do this..
function instance(ob,time,place) wait(time) Instance.new(ob).Parent = place end instance("Message",60,game.Workspace)
For hippies: http://www.roblox.com/Peace-Shirt-TRANSPARENT-item?id=99429853 |
|
|
| Report Abuse |
|
|
|
| 17 Dec 2012 07:04 PM |
Nah, I just saw this: Instance.new("Message",Workspace,60) in some famous game that was uncopylocked.
~SamuelKingx |
|
|
| Report Abuse |
|
|
|
| 17 Dec 2012 07:38 PM |
Why not test it..?
For hippies: http://www.roblox.com/Peace-Shirt-TRANSPARENT-item?id=99429853 |
|
|
| Report Abuse |
|
|
| |
|
|
| 17 Dec 2012 08:08 PM |
Maybe they made a custom function
Instance = {new = function(instance,parent,delay) instance = Instance.new(instand,parent) return instance game.Debris:AddItem(instance,delay) end}
~ Usering ~ |
|
|
| Report Abuse |
|
|