if a player hovers his mouse on another player, showing the stats, mind you, wouldn’t be that great, instead if there’s a player list and then if a player hovers his mouse on the player name showing stats and all, that would be better and easier to do too, but i’m not fully sure whether that’s what you want, i’ll just look at the file…
Also parenting directly is not very efficient where you do :
function module.LeaderstatsCreate(Player)
local leaderstats = Instance.new("Folder",Player)--instead of this, separately do..
–leaderstats.Parent = Player
leaderstats.Name = "leaderstats"
return leaderstats
end
Look at it here, it’ll probably improve how efficient your scripts are.