我现在正在创建一个游戏,我需要知道在排行榜上添加一个部分,例如KO系统的工作方式,但是我需要它来显示类的名称,例如“向导”等。而是将他们分成团队,这会使人过于拥挤,这会有所帮助。
答案 0 :(得分:1)
您可以通过放置不同的值对象将多种类型的值添加到页首横幅(leaderstats
)对象。例如,如果要在排行榜上放置标题,请将StringValue
放入leaderstats
对象中。
local players = game:GetService("Players")
function playerAdded(player)
local leaderstats = Instance.new("Folder")
leaderstats.Parent = player
leaderstats.Name = "leaderstats"
local title = Instance.new("StringValue")
title.Parent = leaderstats
title.Name = "Class"
title.Value = "Wizard" -- or whatever you want it to be
end
players.PlayerAdded:Connect(playerAdded)
要更改类,您要做的就是更改StringValue Class
的值。
player.leaderstats.Class.Value = "Warrior"
https://www.robloxdev.com/articles/Leaderboards
https://www.robloxdev.com/api-reference/event/Players/PlayerAdded