Hello i need help cause the leaderboard rebirth stats they don’t work.
- The Issue
Leaderboard stat not showing and i scripted and it appeared none errors.
- The Script
heres the script for u review it!
and it only shows the coins leadboard
Hello i need help cause the leaderboard rebirth stats they don’t work.
Leaderboard stat not showing and i scripted and it appeared none errors.
and it only shows the coins leadboard
It needs to be named with all lowercase “leaderstats”
Lua is case sensitive, hence why you have to change the leaderstats name to leaderstats
for it to properly work
local folder = Instnace.new("Folder")
folder.Name = "leaderstats"
folder.Parent = player
In addition to the suggestions from the previous replies, you might want to just add the rebirth value to the leaderstats script for the coins value. It looks like you are trying to create an entirely new leaderstats folder for rebirths when you really only need to add another rebirths IntValue to your original leaderstats script for the coins.