of     1   

hkep
#184182614Tuesday, February 23, 2016 4:37 AM GMT

I need to somehow irritate through the properties of an instance. A method sort of like this: Instance:GetProperties() -- it returns an array of all the properties, consider adding it to the instance class Also, I need a way of identifying a userdata. i.e: local value = UDim2.new() print(type(value)) -- prints 'userdata' print(tostring(value)) -- prints '0,0,0,0' print(value.identifyer) -- errors, need something to print 'UDim2' -- consider adding a c function to get it, or maybe add a property like the example has Please support, this is so my replication system will work smoothly.
hkep
#184183187Tuesday, February 23, 2016 4:49 AM GMT

bump0
hkep
#184237344Wednesday, February 24, 2016 5:36 AM GMT

bump1
Darkno57
#184239167Wednesday, February 24, 2016 6:38 AM GMT

bump2
hkep
#184251093Wednesday, February 24, 2016 4:50 PM GMT

bump3
hkep
#184304148Thursday, February 25, 2016 5:21 PM GMT

bump4
Scrippa
#184307523Thursday, February 25, 2016 6:54 PM GMT

Support, even though you can get properties by storing all properties of all Instances in a table and check if the Instance you want has all these properties there it is if you need it: pastebin.com/NiH2aEqa and there's already a way to identify userdata: http://forum.roblox.com/Forum/ShowPost.aspx?PostID=182060507
jumpykilldestroy
#184308142Thursday, February 25, 2016 7:12 PM GMT

@graidlyz you can but it gets pretty annoying i use one and i have to update it with new properties (if they're added) every week also better way to identify objects: IsObject=function(Object) local Value=pcall(function()return Object.ClassName end) return Value end
Cakeruiner
#184314996Thursday, February 25, 2016 9:29 PM GMT

necrobump
NathanJLian
#184321247Thursday, February 25, 2016 11:03 PM GMT

100% Support.
hkep
#184423334Saturday, February 27, 2016 8:47 PM GMT

Like I said "more smoothly". I already have a way to identify a userdata and an object. Userdata identification is really ugly. I didn't say anything about object identification because it works fine. I need to iritate through the object's properties, which requires every object to be defined in an array. Like I said, I only bothered to do PVInstances because of the excessive work. Userdata identification looks like this: local function c(userdata,property) return pcall(function() userdata[property] end) end -- about the least amount of work you can do function Identify(u) if c(u,"Number") then return "Color3" elseif c(u,"lookVector") then return "CFrame" -- continue end end
hkep
#184493526Sunday, February 28, 2016 8:15 PM GMT

bump5
devHoodie
#184493825Sunday, February 28, 2016 8:19 PM GMT

Support!
hkep
#184540145Monday, February 29, 2016 5:24 PM GMT

bump6
hkep
#184878221Sunday, March 06, 2016 6:57 PM GMT

bump7
hkep
#184983070Tuesday, March 08, 2016 2:55 PM GMT

Bump8

    of     1