of     1   

JustDefiable
#139067647Thursday, July 03, 2014 4:51 AM GMT

I need someone experienced with this. I have a holo that I made a script for. It opens a map in a configuration folder, and runs it in the game whenever I say "Computer load [Map name here]" However, it only works to the people who I put in the script. I Want to make it grouprankID but idk how.
EchoingEndlessly
#139067966Thursday, July 03, 2014 4:54 AM GMT

local Rankz = {255, 254, 253, 252, 251, 250} Game.Players.PlayerAdded:connect(function(Plr) for groupz, rankz in ipairs(Rankz) do if Plr:GetRankInGroup(GroupId) == Rankz then --do stuff end end end)
EchoingEndlessly
#139068060Thursday, July 03, 2014 4:55 AM GMT

Fix: local Rankz = {255, 254, 253, 252, 251, 250} Game.Players.PlayerAdded:connect(function(Plr) for groupz, rankzz in ipairs(Rankz) do if Plr:GetRankInGroup(GroupId) == rankzz then --do stuff end end end)
JustDefiable
#139068501Thursday, July 03, 2014 4:59 AM GMT

Thank you. Me and Caleb are working on the script. We are going to test if it worked. I appreciate the help :)

    of     1