RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a dropper that drops bright red parts with a value of 1 inside of them"
-- server script (ServerScriptService) while true do local part = Instance.new("Part") part.Parent = game.Workspace part.Position = Vector3.new(0, 50, 0) part.Color = Color3.fromRGB(255, 0, 0) part.Value = 1 wait(1) end