RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a function that randomly fires"
-- server script local function randomFire() local x = math.random(-100, 100) local y = math.random(5, 50) local z = math.random(-100, 100) local fire = Instance.new("Fire") fire.Parent = game.Workspace local part = Instance.new("Part") part.Position = Vector3.new(x, y, z) part.Parent = game.Workspace fire.Parent = part end randomFire()