|
| 22 Apr 2014 12:26 AM |
My clone script doesn't works in online mode but works in test mode. Script:
script = game.Lighting.WalkingAnimation clone = script:Clone()
game.Players.PlayerAdded:connect(function(plr) game.Workspace.CharacterAdded:connect(function(char) clone.Parent = char end) end) |
|
|
| Report Abuse |
|
|
Dorzilla
|
  |
| Joined: 03 Mar 2010 |
| Total Posts: 155 |
|
|
| 22 Apr 2014 12:41 AM |
script = game.Lighting.WalkingAnimation clone = script:Clone()
game.Players.PlayerAdded:connect(function(plr) plr.CharacterAdded:connect(function(char) clone.Parent = char end) end) |
|
|
| Report Abuse |
|
|
|
| 22 Apr 2014 04:51 AM |
| Nice try, you just had the function messed up ^.^ keep up the work! |
|
|
| Report Abuse |
|
|