RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make the model name show who owns the house inside of the model"
-- server script local house = game.Workspace.House local owner = house:FindFirstChild("Owner") if owner then house.Name = owner.Value .. "'s House" else house.Name = "Unowned House" end