RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"3d model a idiot"
-- ScripterAI can only help with scripting as of now, so here's a script for the 3d model local model = game.Workspace.Model model:SetPrimaryPartCFrame(CFrame.new(0, 0, 0)) model:SetPrimaryPartCFrame(CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))) model:SetPrimaryPartCFrame(CFrame.new(0, 0, 0)) local head = Instance.new("Part", model) head.Name = "Head" head.Size = Vector3.new(1, 1, 1) head.BrickColor = BrickColor.new("Bright yellow") head.CFrame = CFrame.new(0, 1, 0) local torso = Instance.new("Part", model) torso.Name = "Torso" torso.Size = Vector3.new(2, 2, 1) torso.BrickColor = BrickColor.new("Bright yellow") torso.CFrame = CFrame.new(0, 0.5, 0) local leftArm = Instance.new("Part", model) leftArm.Name = "LeftArm" leftArm.Size = Vector3.new(1, 1, 1) leftArm.BrickColor = BrickColor.new("Bright yellow") leftArm.CFrame = CFrame.new(-1, 0.5, 0) local rightArm = Instance.new("Part", model) rightArm.Name = "RightArm" rightArm.Size = Vector3.new(1, 1, 1) rightArm.BrickColor = BrickColor.new("Bright yellow") rightArm.CFrame = CFrame.new(1, 0.5, 0) local leftLeg = Instance.new("Part", model) leftLeg.Name = "LeftLeg" leftLeg.Size = Vector3.new(1, 1, 1) leftLeg.BrickColor = BrickColor.new("Bright yellow") leftLeg.CFrame = CFrame.new(-0.5, 0, 0) local rightLeg = Instance.new("Part", model) rightLeg.Name = "RightLeg" rightLeg.Size = Vector3.new(1, 1, 1) rightLeg.BrickColor = BrickColor.new("Bright yellow") rightLeg.CFrame = CFrame.new(0.5, 0, 0)