of     1   

FreeLobby
#182867301Tuesday, February 02, 2016 3:12 AM GMT

Good evening, With a little help I managed to create a script that allows show the modules and make them disappear. The problem. I will want that the leader of the group and those who have permissions to use this command. My script. admin = { "FreeLobby" } game.Players.PlayerAdded:connect(function(nP) for _,v in pairs(admin) do if nP.Name == v then nP.Chatted:connect(function(msg) if msg == "Close/Arena" then M = Instance.new("Hint", Workspace) M.Text = "Closing Arena" --Message wait(0.1) x = game.Lighting.Arena:Clone() wait(0.1) x.Parent = game.Workspace wait(3) M:remove() wait(3) end end) end end end)
lapladav
#182868542Tuesday, February 02, 2016 3:33 AM GMT

It is very well explained on the wikia, go take a look there
FreeLobby
#182873569Tuesday, February 02, 2016 5:19 AM GMT

Ok thank you I'm going to see if I encounter another problem and I still can not, I will return to this post :)
FreeLobby
#182998903Thursday, February 04, 2016 9:16 PM GMT

I still can not change the script and I do not find on Robloxia :/
FreeLobby
#183027404Friday, February 05, 2016 5:10 AM GMT

Here I found, but I fail to enter the first line of code in the second line of code. 1. game.Players.PlayerAdded:connect(function(player) if player:GetRankInGroup(856955) >= 250 then end end 2. admin = { "xQueenDestinyx","FreeLobby" } game.Players.PlayerAdded:connect(function(nP) for _,v in pairs(admin) do if nP.Name == v then nP.Chatted:connect(function(msg) if msg == "Open/SF" then x = game.Lighting.SF:Clone() wait(0.1) x.Parent = game.Workspace wait(3) end end) end end end)
FreeLobby
#183029702Friday, February 05, 2016 6:23 AM GMT

No one to help? : /
eleye
#183029903Friday, February 05, 2016 6:31 AM GMT

put this into a local script and try.
eleye
#183029925Friday, February 05, 2016 6:32 AM GMT

admin = false game.Players.PlayerAdded:connect(function(player) if player:GetRankInGroup(856955) >= 250 then admin = true end game.Players.PlayerAdded:connect(function(nP) for _,v in pairs(admin) do if nP.Name == v then nP.Chatted:connect(function(msg) if msg == "Open/SF" then x = game.Lighting.SF:Clone() wait(0.1) x.Parent = game.Workspace wait(3) end end) end end end)
FreeLobby
#183030765Friday, February 05, 2016 7:10 AM GMT

I had to add "end" and no errors but not working I try to find the error but I still can not find admin = false game.Players.PlayerAdded:connect(function(player) if player:GetRankInGroup(856955) >= 1 then admin = true end game.Players.PlayerAdded:connect(function(nP) for _,v in pairs(admin) do if nP.Name == v then nP.Chatted:connect(function(msg) if msg == "Open/SF" then x = game.Lighting.SF:Clone() wait(0.1) x.Parent = game.Workspace wait(3) end end) end end end) end) The script is local.
myactivetestplace
#183031109Friday, February 05, 2016 7:27 AM GMT

Nice name
FreeLobby
#183031436Friday, February 05, 2016 7:41 AM GMT

It does not help me
FreeLobby
#183050257Friday, February 05, 2016 8:39 PM GMT

No one else to help? It's rare or what.

    of     1