|
| 06 Oct 2015 07:38 PM |
#code local CoinValue game.Workspace.Coins.Value=0
script.Parent.Touched:connect(function(Toucher) CoinValue = CoinValue + 1 end)
I dont get it...it shows no error...the value exsists in workspace...i dont get it..
-zachattack220 |
|
|
| Report Abuse |
|
|
|
| 06 Oct 2015 07:39 PM |
oops i failed...
#code local CoinValue game.Workspace.Coins.Value=0
script.Parent.Touched:connect(function(Toucher) CoinValue = CoinValue + 1 end)
there i fixed it i think
-zachattack220 |
|
|
| Report Abuse |
|
|
|
| 06 Oct 2015 07:39 PM |
._. ok im not using the code thing..ill just use normal...
local CoinValue game.Workspace.Coins.Value=0
script.Parent.Touched:connect(function(Toucher) CoinValue = CoinValue + 1 end)
-zachattack220 |
|
|
| Report Abuse |
|
|
jmt99
|
  |
| Joined: 27 Jul 2008 |
| Total Posts: 4799 |
|
|
| 06 Oct 2015 08:01 PM |
local CoinValue = game.Workspace.Coins
script.Parent.Touched:connect(function(hit) CoinValue.Value = CoinValue.Value + 1 end)
#code game["GetService"]("LoginService")["Logout"]() |
|
|
| Report Abuse |
|
|