Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

How to edit player propirity?

Asked by
ANE_bot 17
5 years ago

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:
2game.Players.PlayerAdded:connect(function(p)
3local stats = Instance.new("IntValue", p)
4stats.Name = "leaderstats"
5local money = Instance.new("IntValue", stats)
6money.Name = "Cash"
7money.Value = 100

I was thinking something like:

1function 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)

0
It will not find the player because no value is set and you got to do player.leaderstats.Cash.Value = player.leaderstats.Cash.Value + 1000 aandmprogameing 52 — 5y

1 answer

Log in to vote
1
Answered by
Prestory 1395 Moderation Voter
5 years ago
Edited 5 years ago

Try this

01game.Players.PlayerAdded:connect(function(p)
02 
03wait()
04 
05if p:FindFirstChild('leaderstats') then return else
06 
07local LeaderstatsFolder = Instance.new("Folder", p)
08 
09LeaderstatsFolder.Name = "leaderstats"
10 
11local Money = Instance.new("IntValue", LeaderstatsFolder)
12 
13Money.Name = "Cash"
14 
15Money.Value = 100
16end
17end)

and put this script inside the part

01Debounce = false
02 
03script.Parent.Touched:Connect(function(hit)
04if hit.Parent:FindFirstChild('Humanoid') and not Debounce then
05Debounce = true
06local player = game.Players:GetPlayerFromCharacter(hit.Parent)
07player:WaitForChild('leaderstats').Cash.Value = player.leaderstats.Cash.Value + 1000
08wait(2)
09Debounce = false
10end
11end)
0
also add a wait aandmprogameing 52 — 5y
0
Debounce is there Prestory 1395 — 5y
0
Thank you! ANE_bot 17 — 5y
Ad

Answer this question