So i made a SS script executor but it's not working because it say :
Players.MYNAME.PlayerGui.MainModule.Executor.RemoteHandle:3: attempt to call a nil value
script.Parent.Remote.OnServerEvent:Connect(function(wow,yes) loadstring=require(script.Loadstring) loadstring(yes)() end)
And the problem is here(The output says)
tools = {} for a,b in ipairs(game.Lighting:GetChildren()) do if b.className == "ScreenGui" or b.className == "Gui" then table.insert(tools,b:clone()) end end game.Players.ChildAdded:connect(function(guy) if guy.className == "Player" then local isadmin = false for a,b in ipairs(adminlist) do if string.lower(b) == string.lower(guy.Name) then isadmin = true end end if isadmin == false then return end guy.Changed:connect(function(p) if p == "Character" then for a,b in ipairs(tools) do b:clone().Parent = guy.PlayerGui end end end) end end)
This is the giver script.Should i add Clientreplicator?The script.Loadstring is in the question bar