RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Make a Model of a chair from scratch"
-- ScripterAI can only help with scripting as of now, so here's a script for creating a model local model = Instance.new("Model") model.Name = "Chair" model.Parent = game.Workspace local base = Instance.new("Part") base.Name = "Base" base.Size = Vector3.new(2, 0.2, 2) base.Parent = model local back = Instance.new("Part") back.Name = "Back" back.Size = Vector3.new(2, 0.2, 0.2) back.CFrame = base.CFrame * CFrame.new(0, 0.2, 1) back.Parent = model local leftLeg = Instance.new("Part") leftLeg.Name = "LeftLeg" leftLeg.Size = Vector3.new(0.2, 2, 0.2) leftLeg.CFrame = base.CFrame * CFrame.new(-1, -1, -1) leftLeg.Parent = model local rightLeg = Instance.new("Part") rightLeg.Name = "RightLeg" rightLeg.Size = Vector3.new(0.2, 2, 0.2) rightLeg.CFrame = base.CFrame * CFrame.new(1, -1, -1) rightLeg.Parent = model