A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 2

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 2

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 2

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 2

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 2

Filename: geshi/geshi.php

Line Number: 3469

A PHP Error was encountered

Severity: Notice

Message: Undefined offset: 1

Filename: geshi/geshi.php

Line Number: 3502

A PHP Error was encountered

Severity: Warning

Message: Cannot modify header information - headers already sent by (output started at /www/wwwroot/pastebin.pl/system/core/Exceptions.php:185)

Filename: view/rss.php

Line Number: 2

leaderstats - Pastebin leaderstats - Pastebin https://pastebin.pl/ en Re: leaderstats https://pastebin.pl/view/46f7d6cd Mon, 11 Jul 2022 14:59:03 +0200 Ivory Pheasant https://pastebin.pl/view/46f7d6cd
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/42b4c4ab Fri, 06 May 2022 14:32:55 +0200 Gray Cockroach https://pastebin.pl/view/42b4c4ab
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/98051508 Thu, 24 Mar 2022 16:57:12 +0100 Blush Parakeet https://pastebin.pl/view/98051508
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/6062537f Sun, 10 Oct 2021 17:34:58 +0200 Innocent Curlew https://pastebin.pl/view/6062537f
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/0a59617f Sat, 09 Oct 2021 17:13:56 +0200 Round Penguin https://pastebin.pl/view/0a59617f
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/f62510fa Wed, 29 Sep 2021 17:56:44 +0200 Patryk Pr https://pastebin.pl/view/f62510fa
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/a38f8683 Thu, 12 Aug 2021 07:56:49 +0200 Mature Tortoise https://pastebin.pl/view/a38f8683
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/52a2eeb3 Tue, 20 Jul 2021 18:09:32 +0200 Sweltering Moth https://pastebin.pl/view/52a2eeb3
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/8419cc61 Tue, 20 Apr 2021 12:14:58 +0200 Colorant Gorilla https://pastebin.pl/view/8419cc61
  1. local Monestore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/131d9c24 Tue, 20 Apr 2021 12:08:32 +0200 Trivial Macaque https://pastebin.pl/view/131d9c24
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/52d1ba97 Thu, 08 Apr 2021 22:31:00 +0200 Cream Sloth https://pastebin.pl/view/52d1ba97
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/7d00b33b Mon, 05 Apr 2021 03:05:16 +0200 Melodic Hog https://pastebin.pl/view/7d00b33b
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/1f715a81 Sun, 04 Apr 2021 10:33:47 +0200 julka_kot1 https://pastebin.pl/view/1f715a81
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/27294f67 Thu, 28 Jan 2021 13:03:23 +0100 bartek https://pastebin.pl/view/27294f67
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/574adbef Tue, 19 Jan 2021 17:31:23 +0100 Queen Bird https://pastebin.pl/view/574adbef
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/a119f183 Thu, 14 Jan 2021 19:55:35 +0100 Sloppy Bee https://pastebin.pl/view/a119f183
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/bc23f7ea Sat, 09 Jan 2021 12:51:21 +0100 Little Sloth https://pastebin.pl/view/bc23f7ea
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/b52683c3 Tue, 22 Dec 2020 20:36:49 +0100 hd admin https://pastebin.pl/view/b52683c3
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/7c5f1642 Mon, 21 Dec 2020 21:26:16 +0100 Silly Parrot https://pastebin.pl/view/7c5f1642
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/f24cb142 Sat, 12 Dec 2020 13:52:13 +0100 Corrupt Bat https://pastebin.pl/view/f24cb142
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/e5620517 Sat, 05 Dec 2020 19:05:37 +0100 Lousy Cat https://pastebin.pl/view/e5620517
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/035795d7 Tue, 24 Nov 2020 13:24:38 +0100 Bitty Bird https://pastebin.pl/view/035795d7
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>
Re: leaderstats https://pastebin.pl/view/dcee59c1 Thu, 29 Oct 2020 05:58:07 +0100 Chartreuse Eider https://pastebin.pl/view/dcee59c1
  1. local MoneyStore = game:GetService("DataStoreService"):GetDataStore("MoneyData")
  2. local RebirthStore = game:GetService("DataStoreService"):GetDataStore("RebirthData")
  3. local EyeStore = game:GetService("DataStoreService"):GetDataStore("EyesData")
  4.  
  5.  
  6. game.Players.PlayerAdded:Connect(function(plr)
  7.         local leaderstats = Instance.new("Folder")
  8.         leaderstats.Name = "leaderstats"
  9.         leaderstats.Parent = plr
  10.  
  11.         local money = Instance.new("IntValue")
  12.         money.Name = "Coins"
  13.         money.Value = MoneyStore:GetAsync(plr.UserId) or 0
  14.         money.Parent = leaderstats
  15.         local Rebirths = Instance.new("IntValue")
  16.     Rebirths.Name = "Rebirths"
  17.         Rebirths.Value = RebirthStore:GetAsync(plr.UserId) or 0
  18.         Rebirths.Parent = leaderstats
  19.         local Eyes = Instance.new("IntValue")
  20.         Eyes.Name = "Eyes"
  21.         Eyes.Value = EyeStore:GetAsync(plr.UserId) or 0
  22.         Eyes.Parent = leaderstats
  23.  
  24.  
  25. end)
  26.  
  27. game.Players.PlayerRemoving:Connect(function(plr)
  28.  
  29.         MoneyStore:SetAsync(plr.UserId, plr.leaderstats.Coins.Value)
  30.         RebirthStore:SetAsync(plr.UserId, plr.leaderstats.Rebirths.Value)
  31.         EyeStore:SetAsync(plr.UserId, plr.leaderstats.Eyes.Value)
  32. end)
]]>