RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script when you say taco and 100 taco falls from the sky"
-- server script local part = Instance.new("Part") part.Name = "Taco" part.Parent = game.Workspace game.Players.PlayerAdded:Connect(function(player) player.Chatted:Connect(function(msg) if msg:lower() == "taco" then for i = 1, 100 do local taco = game.Workspace.Taco:Clone() taco.Position = player.Character.HumanoidRootPart.Position + Vector3.new(0, 50, 0) taco.Parent = game.Workspace task.wait(0.1) end end end) end)