|
| 29 Dec 2014 07:16 PM |
function onPlayerEntered() wait(.9) game.ServerStorage.Instane.new("Model") end
basically the script Creates a Model in Server Storage of Player Data
my script doesnt create the Instance |
|
|
| Report Abuse |
|
|
|
| 29 Dec 2014 07:19 PM |
game.Players.PlayerAdded:connect(function(player Instance.new("Model", game.ServerStorage) end) |
|
|
| Report Abuse |
|
|
|
| 29 Dec 2014 07:28 PM |
game.Players.PlayerAdded:connect(function(player) Instance.new("Model", game.ServerStorage) Instance.Name = print("..player") end)
Now I wanted it to Label the instance with the character's name but its not working |
|
|
| Report Abuse |
|
|
| |
|
128GB
|
  |
| Joined: 17 Apr 2014 |
| Total Posts: 8056 |
|
|
| 29 Dec 2014 07:45 PM |
game.Players.PlayerAdded:connect(function(player) local instance = Instance.new("Model", game.ServerStorage) instance.Name = player.Name end) |
|
|
| Report Abuse |
|
|
|
| 29 Dec 2014 08:10 PM |
game.Players.PlayerAdded:connect(function(player) local instance = Instance.new("Model", game.ServerStorage) instance.Name = player.Name local instance = Instance.new("IntValue",game.ServerStorage) instance.Name = MembershipTime end)
Now the script should add an instance into the Model
but it doesnt do that |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
128GB
|
  |
| Joined: 17 Apr 2014 |
| Total Posts: 8056 |
|
|
| 29 Dec 2014 08:47 PM |
| instance.Name = "MembershipTime" |
|
|
| Report Abuse |
|
|
|
| 29 Dec 2014 08:53 PM |
game.Players.PlayerAdded:connect(function(player) local instance = Instance.new("Model", game.ServerStorage) instance.Name = player.Name local instance = Instance.new("IntValue",game.ServerStorage) instance.Name = MembershipTime end)
How would i get the IntValue to be put into the player named model |
|
|
| Report Abuse |
|
|
| |
|
| |
|
| |
|
|
| 29 Dec 2014 11:47 PM |
| guys this guy is annoying. please, wiki. |
|
|
| Report Abuse |
|
|
|
| 29 Dec 2014 11:59 PM |
| the error with your first script was that you spelt "Instance" wrong |
|
|
| Report Abuse |
|
|