BobloScript.com

Ballistic Missile Testing script - (Auto Launch Missiles)

Published by bebraOriginal developer: ByShidoPublished Aug 8
Open in Roblox
21Views
4Copies
NeverUpdated

Description

Rapid Missile Launching

Auto Launch Missiles repeatedly fires missiles at high speed, removing the need to start every launch manually. It is useful for running fast missile tests and increasing your total launch count with less downtime between launches.

The feature automates launching only; targeting and missile steering are not included in the provided function.

Functions

  • Auto Launch missiles with fast speed

Screenshots

1 image

Script Code

Raw Code
local ReplicatedStorage = game:GetService("ReplicatedStorage")local Players = game:GetService("Players")local MissileLaunchedEvent = ReplicatedStorage:WaitForChild("MissileLaunchedEvent")local player = Players.LocalPlayerlocal gui = Instance.new("ScreenGui")gui.Name = "EasyLeaderboardGui"gui.ResetOnSpawn = falsegui.Parent = player:WaitForChild("PlayerGui")local mainButton = Instance.new("TextButton")mainButton.Name = "EasyButton"mainButton.Size = UDim2.new(0, 200, 0, 50)mainButton.Position = UDim2.new(0.5, -100, 0.5, -25)mainButton.Text = "Easy Leaderboard"mainButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)mainButton.TextColor3 = Color3.new(1, 1, 1)mainButton.Font = Enum.Font.SourceSansBoldmainButton.TextSize = 24mainButton.Parent = guilocal toggleButton = Instance.new("TextButton")toggleButton.Name = "ToggleVisibility"toggleButton.Size = UDim2.new(0, 30, 0, 30)toggleButton.Position = UDim2.new(0, 10, 0, 10)toggleButton.Text = "-"toggleButton.BackgroundColor3 = Color3.fromRGB(30, 30, 30)toggleButton.TextColor3 = Color3.new(1, 1, 1)toggleButton.Font = Enum.Font.SourceSanstoggleButton.TextSize = 18toggleButton.Parent = guilocal speedBox = Instance.new("TextBox")speedBox.Name = "SpeedBox"speedBox.Size = UDim2.new(0, 100, 0, 30)speedBox.Position = UDim2.new(0.5, -50, 0.5, 40)speedBox.PlaceholderText = "Vitesse (ex: 0.05)"speedBox.Text = "0.05"speedBox.BackgroundColor3 = Color3.fromRGB(20, 20, 20)speedBox.TextColor3 = Color3.new(1, 1, 1)speedBox.Font = Enum.Font.SourceSansspeedBox.TextSize = 18speedBox.ClearTextOnFocus = falsespeedBox.Parent = guilocal running = falsemainButton.MouseButton1Click:Connect(function()    running = not running    if running then        mainButton.Text = "Stop Leaderboard"        task.spawn(function()            while running do                MissileLaunchedEvent:FireServer()                local speed = tonumber(speedBox.Text)                if speed and speed > 0 then                    task.wait(speed)                else                    task.wait()                end            end        end)    else        mainButton.Text = "Easy Leaderboard"    endend)toggleButton.MouseButton1Click:Connect(function()    local visible = mainButton.Visible    mainButton.Visible = not visible    speedBox.Visible = not visible    toggleButton.Text = mainButton.Visible and "-" or "+"end)
Latest changeScript publishedAug 8

Comments

Loading comments…