RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"get a model in serverstorage and clone it into workspace"
-- server script local ServerStorage = game:GetService("ServerStorage") local Workspace = game:GetService("Workspace") local model = ServerStorage:FindFirstChild("MyModel") -- replace "MyModel" with the name of your model if model then local clone = model:Clone() clone.Parent = Workspace end