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

My localscript isn't recognizing leaderstats?

Asked by
zomspi 541 Moderation Voter
5 years ago

This script works in studio but not roblox itself, I don't know what's wrong?

01local button = script.Parent
02game.Players.PlayerAdded:Connect(function()
03 
04local purchases = game.Players.LocalPlayer:WaitForChild("leaderstats1"):WaitForChild("Purchases2")
05 
06 
07    if purchases.Value == 3 then
08        print("MVP")
09        button.Visible = true
10        button.Parent:WaitForChild("MVP1"):WaitForChild("TextLabel").Visible = false
11    else
12        print("Bye")
13        button.Visible = false
14    end
15end)
0
I would NOT use a localscript to check leaderstats my friend Creacoz 210 — 5y

2 answers

Log in to vote
0
Answered by 5 years ago

try using game:GetService(Players') for every time you reference the Players in the game. Here's your copy of the script but edited:

01local button = script.Parent
02game:GetService('Players').PlayerAdded:Connect(function()
03 
04local purchases = game:GetService('Players').LocalPlayer:WaitForChild("leaderstats1"):WaitForChild("Purchases2")
05 
06 
07    if purchases.Value == 3 then
08        print("MVP")
09        button.Visible = true
10        button.Parent:WaitForChild("MVP1"):WaitForChild("TextLabel").Visible = false
11    else
12        print("Bye")
13        button.Visible = false
14    end
15end)
0
That didn't work unfortunately, thanks anyone though! zomspi 541 — 5y
Ad
Log in to vote
0
Answered by
Sulu710 142
5 years ago

This script shouldn’t have the “player added function”. Right now every time a player is added, it checks the local player’s stats, not that of the player who is being added. Instead, your script should say:

01local Players = game:GetService(“Players”)
02local player = Players.LocalPlayer
03local button = script.Parent
04 
05local purchases = player:WaitForChild("leaderstats1"):WaitForChild("Purchases2")
06 
07if purchases.Value == 3 then
08     print("MVP")
09     button.Visible = true
10     button.Parent:WaitForChild("MVP1"):WaitForChild("TextLabel").Visible = false
11else
12     print("Bye")
13     button.Visible = false
14     end
15end)

Without having the player added function, the script will run when the player joins the game (or when the local script gets replicated which is usually pretty soon after), instead of it waiting until another player joins the game for it to run. Hope this helped!

0
That didnt work either zomspi 541 — 5y

Answer this question