-
What do you want to achieve? Keep it simple and clear!
I wanna make it so if the player rqnk have a data it’s show it. -
What is the issue? Include screenshots / videos if possible!
I need feedbacks. -
What solutions have you tried so far? Did you look for solutions on the Developer Hub?
local Ranks = {
"Admins",
"New Customer",
}
local DDS = game:GetService("DataStoreService")
local RankData = DDS:GetDataStore("RankData")
local plr = game.Players
local currentRank = plr.Ranks
-- Data --
local Key = "Player-" ..plr.UserId
if RankData == nil then
plr.currentRank = "New Customer"
elseif RankData then
-- feedback on here
end
Please do not ask people to write entire scripts or design entire systems for you. If you can’t answer the three questions above, you should probably pick a different category.