How to Save Rank Image for rank up system

Im trying to make a rank up system that ranks you up for every level you achieve and shows your a image telling what rank you are. The issue I’m having is that I do not know how to make the image rank save and not reset to default rank image.

local player = game.Players.LocalPlayer
local stat = player:WaitForChild("Stats")
local xp = stat:WaitForChild("Exp")
local level = stat:WaitForChild("Rank")

local id
local id1= "rbxassetid://anyrankupimage"
local id2= "rbxassetid://anyrankupimagebut different"
script.Parent.RankSymbolBackRound.RankSymbol.Image = ??? 

level.Changed:Connect(function()
-- detects if player rank up blah blah dont worry about this 
end)
1 Like

solve it on my own. Ignore the post

1 Like