How to define player in DataStore 2 for rebirths?
Asked by
5 years ago Edited 5 years ago
I was trying to define a player in a leaderstats DataStore2 script for rebirths since if i use
if player:FindFirstChild("leaderstats") and
player.leaderstats:FindFirstChild("Rebirths")
player.leaderstats.Rebirths.Value = player.leaderstats.Rebirths.Value + 1
This wouldn't work since my DataStore2 script prevents updated values in the IntValue in the leaderstats folder of a player. I wanted to use RebirthStore:Increment(1, defaultValue) in a DataStore2 script. I've created this and it keeps saying Player is not a valid member of Players. Basically i need help in designing a way to define players in this script.
01 | local Player = game:GetService( "Players" ):GetPlayers() |
02 | game.Players.Player:WaitForChild( "PlayerGui" ).ScreenGui.Frame.TextButton.MouseButton 1 Down:Connect( function (player) |
03 | local RebirthStore = DataStore 2 ( "Rebirths" , player) |
04 | local Player = game:GetService( "Players" ):GetPlayers() |
05 | local ItemStore = DataStore 2 ( "Items" , player) |
06 | local RebirthStore = DataStore 2 ( "Rebirths" , player) |
07 | local CashStore = DataStore 2 ( "Cash" , player) |
08 | local TotalStore = DataStore 2 ( "Total" , player) |
09 | for p in ipairs (Player) do |
10 | if Player.leaderstats.Cash.Value > = 14 then |
11 | RebirthStore:Increment( 1 , defaultValue) |
14 | script.Parent.Parent.Visible = false |
15 | elseif Player.leaderstats.Cash.Value < = 14 then |
16 | script.Parent.Text = "Cant Afford!" |
17 | script.Parent.TextColor 3 = Color 3. fromRGB( 255 , 0 , 0 ) |
19 | script.Parent.Text = "Rebirth?" |
20 | script.Parent.TextColor 3 = Color 3. fromRGB( 85 , 0 , 127 ) |