|
| 18 Jan 2016 10:54 PM |
Discuss the viability of the "table" data-structure enclosed inside of RBX.Lua within the boundaries of this thread.
Ensure that any mentioned projects are directly relevant to table manipulation.
Metatables are considered "permissible." |
|
|
| Report Abuse |
|
|
|
| 18 Jan 2016 11:08 PM |
fishies = {}
for _,v in pairs(game.Lighting:GetChildren()) do if v:FindFirstChild("isfish") then table.insert(fishies, v.Name) end end
http://www.roblox.com/unnamed-item?id=343027253 |
|
|
| Report Abuse |
|
|
|
| 18 Jan 2016 11:25 PM |
Very nice RBX.Lua project, Kylemunday.
What do you intend to use it for? |
|
|
| Report Abuse |
|
|
|
| 18 Jan 2016 11:28 PM |
for i,v in pairs(game.Players:GetPlayers()) do v:Kick() end
idk if i did this right but whatever http://forum.roblox.com/Forum/ShowPost.aspx?PostID=181831407 ||| http://www.roblox.com/Dr-Smyth-Face-item?id=76382978 http://www.roblox.com/Kate-Face-item?id=76383635 http://www.roblox.com/Buddy-Face-item?id=66330339 http://www.roblox.com/Honey-Face-item?id=76385104 http://www.roblox.com/Pal-Face-item?id=86485810 http://www.roblox.com/Max-Face-item?id=86485370 http://www.roblox.com/Sarge-Extreme-Face-item?id=86485881 http://www.roblox.com/Sarge-Face-item?id=86485842 http://www.roblox.com/Sarge-Sad-Face-item?id=86485922 http://www.roblox.com/Man-Face-item?id=76383151 http://www.roblox.com/Woman-Face-item?id=86487766 |
|
|
| Report Abuse |
|
|
|
| 18 Jan 2016 11:29 PM |
"for i,v in pairs(game.Players:GetPlayers()) do v:Kick() end"
Yes, you did that correctly. ":GetPlayers()" returns a read-only table containing the actual players. |
|
|
| Report Abuse |
|
|
Chager
|
  |
| Joined: 18 Sep 2008 |
| Total Posts: 2246 |
|
|
| 18 Jan 2016 11:36 PM |
function moveModelCFrame(model, cframe) local origins = {} for i,v in pairs(model:GetChildren()) do if v.ClassName == "Part" or v.ClassName == "UnionOperation" then origins[v] = model:GetModelCFrame():toObjectSpace(v.CFrame) end end for i, v in pairs(origins) do i.CFrame = cframe:toWorldSpace(v) end end
thank haxhelper, come back soon so we can make mad cash B^))))))))))))) hope he's not dead seriously |
|
|
| Report Abuse |
|
|
|
| 18 Jan 2016 11:37 PM |
a fishing thing based on big the cat's gameplay and big bass fishing which coincidentally use the same engine
http://www.roblox.com/unnamed-item?id=343027253 |
|
|
| Report Abuse |
|
|
|
| 18 Jan 2016 11:41 PM |
Very interesting script samples are being provided. The CFrame example was rather nice.
"a fishing thing based on big the cat's gameplay and big bass fishing which coincidentally use the same engine"
Alright then. Do you intend to implement this into ROBLOX? |
|
|
| Report Abuse |
|
|
|
| 18 Jan 2016 11:42 PM |
ye
http://www.roblox.com/unnamed-item?id=343027253 |
|
|
| Report Abuse |
|
|