I'm currently making a game that heavily uses TextButton GUIs and ImageButton GUIs. How can I get a model to be placed into the game if an ImageButton GUI is clicked?
I assume your model is uploaded on the website. And that the script is a child of the ImageButton
script.Parent.MouseButton1Click:connect(function() local Id = 1 -- Replace 1 with your model Id. game:GetService("InsertService"):LoadAsset(Id).Parent = game.Workspace script.Parent.Active = false end)