Hi, I'm a novice in scripting, and I am in need of help qq
Right now I am trying to create a script that would only allow certain players in the said script to spawn with these set of tools, so far this is what I got:
1 | if game.Players.LocalPlayer.Name = = "kevincatssing" then |
2 | game.ServerStorage:GetChildren() |
3 | for i, v in pairs (x) do |
4 | v:Clone().Parent = game.Players [ "kevincatssing" ] .Backpack |
5 | end |
6 | end |
I am planning to place the script in StarterGui
Please aid qq
I'm assuming that you are using a LocalScript
, because you are accessing the LocalPlayer
. The first Thing I see that is Incorrect is that you are accessing the ServerStorage
through a localscript
, and a localscript can Never access the ServerStorage
, use the ReplicatedStorage instead, you also didn't define what x
is on line 03
, Now lets fix your script.
01 | admin = { "kevincatssing" } |
02 |
03 | game.Players.ChildAdded:connect( function (player) -- I'm using the ChildAdded instead of PlayerAdded, because PlayerAdded doesn't work with a localscript |
04 | if player.Name = = admin [ 1 ] then |
05 | local storage = game.ReplicatedStorage:GetChildren() |
06 | for _,value in pairs (storage) do |
07 | if value:IsA( "Tool" ) or value:IsA( "HopperBin" ) then -- use the or |
08 | value:Clone().Parent = player:FindFirstChild( "Backpack" ) |
09 | end |
10 | end |
11 | end |
12 | end ) |