Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

what is wrong with this script?

Asked by 11 years ago
01game.Players.PlayerAdded:connect(function(player)
02 
03 
04 
05if player.Name==("Player1") then
06 
07 
08KeyClone=game.ServerStorage.Key:Clone()
09 
10 
11KeyClone.Parent=player.Backpack
12 
13 
14 
15end
16 
17end)

2 answers

Log in to vote
2
Answered by 11 years ago

Not exactly sure. But you can find the answer by viewing the output while you're in test mode. The output tells you the area of the script that is incorrect and is an easy way to spot problems. Click the "View" button at the top and select its child "Output" to find what is wrong with your script.

Ad
Log in to vote
0
Answered by
Reverge -1
11 years ago

I prefer spacing your ='s. KeyClone = game.ServerStorage.Key:Clone() should be at the top.

Then it should say...

01game.Players.PlayerAdded:connect(function(player)
02 
03KeyClone = game.ServerStorage.Key:Clone()
04 
05if player.Name == ("Player1") then
06 
07KeyClone.Parent = player.Backpack
08 
09end
10end)

Answer this question