Hai! I'm working on a game behind bars and I was working on the bank, I have a cash system in place, but don't know how to make the value go up or down!
1 | --Da code: |
2 | game.Players.PlayerAdded:connect( function (p) |
3 | local stats = Instance.new( "IntValue" , p) |
4 | stats.Name = "leaderstats" |
5 | local money = Instance.new( "IntValue" , stats) |
6 | money.Name = "Cash" |
7 | money.Value = 100 |
I was thinking something like:
1 | function hit(hit) |
2 | game.players.player.propirity.cash = cash + 1000 -- propirity is a real intvalue, I checked. |
O.O so. um. I think thats it?
thanks, archmantella13(AKA ANE_bot)
Try this
01 | game.Players.PlayerAdded:connect( function (p) |
02 |
03 | wait() |
04 |
05 | if p:FindFirstChild( 'leaderstats' ) then return else |
06 |
07 | local LeaderstatsFolder = Instance.new( "Folder" , p) |
08 |
09 | LeaderstatsFolder.Name = "leaderstats" |
10 |
11 | local Money = Instance.new( "IntValue" , LeaderstatsFolder) |
12 |
13 | Money.Name = "Cash" |
14 |
15 | Money.Value = 100 |
16 | end |
17 | end ) |
and put this script inside the part
01 | Debounce = false |
02 |
03 | script.Parent.Touched:Connect( function (hit) |
04 | if hit.Parent:FindFirstChild( 'Humanoid' ) and not Debounce then |
05 | Debounce = true |
06 | local player = game.Players:GetPlayerFromCharacter(hit.Parent) |
07 | player:WaitForChild( 'leaderstats' ).Cash.Value = player.leaderstats.Cash.Value + 1000 |
08 | wait( 2 ) |
09 | Debounce = false |
10 | end |
11 | end ) |