Well, let's start:
1. No parameter, end!
The first issue you got was on calling function. You didn't set an parameter for giveSword function:
01 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
02 | local weapons = replicatedstorage:WaitForChild( "Weapons" ) |
03 | local woodensword = weapons:WaitForChild( "WoodenSword" ) |
04 | local knightssword = weapons:WaitForChild( "KnightsSword" ) |
06 | function giveSword(player) |
08 | local backpack = player:WaitForChild( "Backpack" ) |
10 | local startergear = player:WaitForChild( "StarterGear" ) |
12 | if player.Weapon.Value = = "WoodenSword" then |
13 | woodensword:Clone().Parent = backpack |
14 | woodensword:Clone().Parent = startergear |
15 | elseif player.Weapon.Value = = "KnightsSword" then |
16 | knightssword:Clone().Parent = backpack |
17 | knightssword:Clone().Parent = startergear |
So you need to set the player:
1 | giveSword(game.Players:WaitForChild( "Playername" )) |
2. Did you want to give sword for everyone, right?
To do that, you can use PlayerAdded
event to apply that function to the new player:
01 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
02 | local weapons = replicatedstorage:WaitForChild( "Weapons" ) |
03 | local woodensword = weapons:WaitForChild( "WoodenSword" ) |
04 | local knightssword = weapons:WaitForChild( "KnightsSword" ) |
06 | game.Players.PlayerAdded:connect( function (player) |
07 | local backpack = player:WaitForChild( "Backpack" ) |
09 | local startergear = player:WaitForChild( "StarterGear" ) |
11 | if player.Weapon.Value = = "WoodenSword" then |
12 | woodensword:Clone().Parent = backpack |
13 | woodensword:Clone().Parent = startergear |
14 | elseif player.Weapon.Value = = "KnightsSword" then |
15 | knightssword:Clone().Parent = backpack |
16 | knightssword:Clone().Parent = startergear |
But if you want to give sword to everyone at a certain time, we must to call a for
loop:
01 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
02 | local weapons = replicatedstorage:WaitForChild( "Weapons" ) |
03 | local woodensword = weapons:WaitForChild( "WoodenSword" ) |
04 | local knightssword = weapons:WaitForChild( "KnightsSword" ) |
07 | for i, v in pairs (game.Players:GetChildren()) do |
08 | local backpack = v:WaitForChild( "Backpack" ) |
10 | local startergear = v:WaitForChild( "StarterGear" ) |
12 | if v.Weapon.Value = = "WoodenSword" then |
13 | woodensword:Clone().Parent = backpack |
14 | woodensword:Clone().Parent = startergear |
15 | elseif v.Weapon.Value = = "KnightsSword" then |
16 | knightssword:Clone().Parent = backpack |
17 | knightssword:Clone().Parent = startergear |
3. If statement for WaitForChild() ?
Statements requesting for a child provided by :WaitForChild()
function are useless.
01 | local replicatedstorage = game:GetService( "ReplicatedStorage" ) |
02 | local weapons = replicatedstorage:WaitForChild( "Weapons" ) |
03 | local woodensword = weapons:WaitForChild( "WoodenSword" ) |
04 | local knightssword = weapons:WaitForChild( "KnightsSword" ) |
06 | game.Players.PlayerAdded:connect( function (player) |
07 | local backpack = player:WaitForChild( "Backpack" ) |
08 | local startergear = player:WaitForChild( "StarterGear" ) |
09 | local weaponval = player:WaitForChild( "Weapon" ) |
10 | if weaponval.Value = = "WoodenSword" then |
11 | woodensword:Clone().Parent = backpack |
12 | woodensword:Clone().Parent = startergear |
14 | if weaponval.Value = = "KnightsSword" then |
15 | knightssword:Clone().Parent = backpack |
16 | knightssword:Clone().Parent = startergear |
4. Server or Client?
A thing you must to understand is that ReplicatedStorage is useful for LocalScripts, while if you use a Server Script, you should use ServerStorage instead.
Final Script
Once you want to give the swords a certain time, here it goes:
01 | local weapons = game:GetService( "ServerStorage" ):WaitForChild( "Weapons" ) |
02 | local woodensword = weapons:WaitForChild( "WoodenSword" ) |
03 | local knightssword = weapons:WaitForChild( "KnightsSword" ) |
06 | for i, v in pairs (game.Players:GetChildren()) do |
07 | local backpack = v:WaitForChild( "Backpack" ) |
08 | local startergear = v:WaitForChild( "StarterGear" ) |
09 | if v.Weapon.Value = = "WoodenSword" then |
10 | woodensword:Clone().Parent = backpack |
11 | woodensword:Clone().Parent = startergear |
12 | elseif v.Weapon.Value = = "KnightsSword" then |
13 | knightssword:Clone().Parent = backpack |
14 | knightssword:Clone().Parent = startergear |