I have the GUI and I have the position of the car, located in serverstorage. I'm not sure how to make the car spawn and be drivable, as looking at spawn buttons it looks very complicated. Please help.
Honestly, it is not complicated! Put a local script in your button, then we code he mousebutton1down event!
local button = script.Parent -- we get the button we want to click local car = game.ServerStorage.Car -- we get the car button.MouseButton1Down:connect(function() -- we check to see if the player has clicked the mouse car:Clone() -- clone the car car:Clone().Parent = workspace car:Clone().Position = Vector3.new(--whatever) -- if so, we clone the car, change the parent to workspace, and if needed, change the position! end)
This should all work! Tested it on my laptop and worked great! Please upvote if worked!