of     1   

phoenix53124
#170975952Thursday, August 13, 2015 4:04 AM GMT

Would this be an effective way to temporarily store objects? f = Instance.new("Folder") v = Instance.new("StringValue",f) v.Value = "This is a text" function getFolder() return f end Would this allow me to have a folder of various things floating outside the game, or is there a stipulation of which I am not yet aware?
myactivetestplace
#170976133Thursday, August 13, 2015 4:05 AM GMT

when something is nil they still take up data space but you just cant see them
cntkillme123
#170976232Thursday, August 13, 2015 4:06 AM GMT

'Would this allow me to have a folder of various things floating outside the game' Yes, but you do this all the time. Like creating tables and strings and all that stuff :)
phoenix53124
#170976252Thursday, August 13, 2015 4:06 AM GMT

Precisely. Thanks! *kills floodwall*
[rfa#hidefromsearch]
#170976274Thursday, August 13, 2015 4:07 AM GMT

[rfa#hidefromsearch]
phoenix53124
#170976702Thursday, August 13, 2015 4:10 AM GMT

I want to store objects. I would convert it to raw data, but that seems messier.
MechaScripter
#170979898Thursday, August 13, 2015 4:42 AM GMT

Why store objects in nil instead of using ServerStorage/ReplicatedStorage?
Zawie
#170986716Thursday, August 13, 2015 6:11 AM GMT

@Mecha if you wanted to make it so only said script could acsess it

    of     1