Racing Rocket Script | FARM POINTS, UPGRADE YOUR ROCKET, BUY EGGS & MORE!

Created by Ozzf

Features:

  • ADD TO THESE TO MAKE THE AUTOMATIC
while true do
task.wait()
end
  • FARM POINTS
local args = {
   [1] = "CheckAdd",
   [2] = 14,                           -- portal to go through (Uranus deep space etc..)
   [3] = 3,                             -- level of space your on (extra solar, Andromeda, deep space)
   [4] = 8                              -- lap your on 8 is the best going higher wont effect anything going lower will just reduce stars
}

game:GetService("ReplicatedStorage").RemoteEvents.Star_RemoteEvent:FireServer(unpack(args))
  • UPGRADE YOUR ROCKET
local args = {
   [1] = "UpgradeRocket"
}

game:GetService("ReplicatedStorage").RemoteFuncs.Rocket_RemoteFunc:InvokeServer(unpack(args))
  • BUY EGGS
local args = {
   [1] = "Draw",
   [2] = "Egg10"                   -- Egg number
}

game:GetService("ReplicatedStorage").RemoteFuncs.Pet_RemoteFunc:InvokeServer(unpack(args))
  • CLICKING FOR SPEED
local args = {
   [1] = "ClickPower",
   [2] = math.huge                           --math.huge wont effect anything considering it will only click the amount of times your allowed
}

game:GetService("ReplicatedStorage").RemoteEvents.Rocket_RemoteEvent:FireServer(unpack(args))
  • CHANGE YOUR ROCKET SPEED/ HOW FAST YOU GO
_G.speed = true
spawn(function()
   while _G.speed == true do
local freddy = 123123123  -- how fast you want to go dont do math.huge and you might get kicked if you go to high
local glen = freddy


local mt = getrawmetatable(game);
make_writeable(mt);
local old_index = mt.__index;

mt.__index = function(alfred,gilbert)
  if tostring(alfred) == "RocketSpeed" then
  if tostring(gilbert) == "Value" then
      return glen;
  end
  end
  return old_index(alfred,gilbert);
end
task.wait()
end
end)