Parent the model to the player’s PlayerGui
. This is the only way to replicate an instance to a single client.
local function returnModel(Player, modelId)
local model = InsertService:LoadAsset(modelId)
model.Parent = Player.PlayerGui
return model
end
I’ve made a post once before regarding how we should have a more intuitive way to do this.