j818
|
  |
| Joined: 10 May 2008 |
| Total Posts: 344 |
|
|
| 13 Apr 2015 09:02 PM |
How would I make it so a player can only pickv up a coin/cash once? For example if a player comes up to a coin, they grab it, and they get +1 coins, but when the coin reappears, they can't grab it again.
I'm confused on how to do this.
Help? :) |
|
|
| Report Abuse |
|
|
| 13 Apr 2015 09:17 PM |
just do something like... lets say
-- place this in model local regentime = 20 --time until coin comes back
wait(regenTime)
--Remove the model model:Destroy()
--Show the message message.Parent = game.Workspace wait(messageTime) message.Parent = nil
--Copy the backup model = backup:clone() model.Parent = game.Workspace model:makeJoints() end --your welcome, Tommytherox |
|
|
| Report Abuse |
|