You are on page 1of 3

--[[

Bloxburg Script (Uh, good name right...?)


Meme: https://sperg.club/uploads/elFYKuMqdp9kRljM.png
]]

-- Wait for game to load

repeat wait() until game:IsLoaded();

-- Define variables

local library =
loadstring(game:HttpGet("https://raw.githubusercontent.com/LegoHacks/Utilities/
main/UI.lua"))();

local workspace = game:GetService("Workspace");


local replicatedStorage = game:GetService("ReplicatedStorage");
local tweenService = game:GetService("TweenService");
local players = game:GetService("Players");
local client = players.LocalPlayer;

-- Main script

local stats = replicatedStorage.Stats[client.Name];


local dataManager = require(replicatedStorage.Modules.DataManager);
local jobManager = require(client.PlayerGui.MainGUI.Scripts.JobManager);

local function fireServer(data)


local oldI = getfenv(dataManager.FireServer).i;
getfenv(dataManager.FireServer).i = function() end; --> Get around their shit
"security"
dataManager:FireServer(data);
getfenv(dataManager.FireServer).i = oldI; --> Restore original function
end;

local function getOrder(customer)


if (not customer or (customer and not customer:FindFirstChild("Order"))) then
return end;

if (stats.Job.Value == "StylezHairdresser") then


local style = customer.Order:WaitForChild("Style").Value;
local colour = customer.Order:WaitForChild("Color").Value;

return {style, colour};


elseif (stats.Job.Value == "BloxyBurgersCashier") then
local burger = customer.Order:WaitForChild("Burger").Value;
local fries = customer.Order:WaitForChild("Fries").Value;
local cola = customer.Order:WaitForChild("Cola").Value;

return {burger, fries, cola};


end;
end;

local bloxburg = library:CreateWindow("Bloxburg");

bloxburg:AddToggle({
text = "Stylez Hairdresser";
flag = "hairdresser";
callback = function(enabled)
if (not enabled) then return end;

if (stats.Job.Value ~= "StylezHairdresser") then


jobManager:GoToWork("StylezHairdresser"); --> TP to job
end;

repeat wait() until stats.Job.Value == "StylezHairdresser";


tweenService:Create(client.Character.HumanoidRootPart, TweenInfo.new(0.75,
Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {CFrame = CFrame.new(868.464783,
13.6776829, 174.983795, -0.999945581, -6.58446098e-08, -0.0104347449, -6.6522297e-
08, 1, 6.45977494e-08, 0.0104347449, 6.52883756e-08, -0.999945581)}):Play();

while library.flags.hairdresser do
local workstations =
workspace.Environment.Locations.StylezHairStudio.HairdresserWorkstations;
for i, v in next, workstations:GetChildren() do
if (v.Occupied.Value) then
fireServer({
Type = "FinishOrder";
Workstation = v;
Order = getOrder(v.Occupied.Value);
});
end;
end;
wait();
end;
end;
});

bloxburg:AddToggle({
text = "Bloxy Burgers Cashier";
flag = "cashier";
callback = function(enabled)
if (not enabled) then return end;

if (stats.Job.Value ~= "BloxyBurgersCashier") then


jobManager:GoToWork("BloxyBurgersCashier"); --> TP to job
end;

repeat wait() until stats.Job.Value == "BloxyBurgersCashier";


tweenService:Create(client.Character.HumanoidRootPart, TweenInfo.new(0.75,
Enum.EasingStyle.Sine, Enum.EasingDirection.Out), {CFrame = CFrame.new(825.076355,
13.6776829, 276.091309, 0.0133343497, -5.09454665e-08, -0.999910772, 7.34347916e-
09, 1, -5.08520621e-08, 0.999910772, -6.66474698e-09, 0.0133343497)}):Play();

while library.flags.cashier do
local workstations =
workspace.Environment.Locations.BloxyBurgers.CashierWorkstations;
for i, v in next, workstations:GetChildren() do
if (v.Occupied.Value) then
fireServer({
Type = "FinishOrder";
Workstation = v;
Order = getOrder(v.Occupied.Value);
});
end;
end;
wait();
end;
end;
});

-- Load library

library:Init();

---Rap Simulator Script


loadstring(game:HttpGet("https://raw.githubusercontent.com/uzu01/lua/main/
loader.lua"))()
---Pet Simulator X Script
loadstring(game:HttpGet"https://www.scriptblox.com/raw/SAZA-HUB_496")()
---Pet Simulator X Script 2
loadstring(game:HttpGet("https://www.scriptblox.com/raw/Project-Meow_421"))()
---Pet Simulator X Script 3
loadstring(game:HttpGet("https://raw.githubusercontent.com/BLACKGAMER1221/Pet-
Simulator-X/main/BK%20Pet.lua"))()
---Bloxburg Gamepass Script
game.Players.LocalPlayer.UserId = "63700903"
---Anti AFK Roblox Script
loadstring(game:HttpGet("https://pastebin.com/raw/sDXcYFhR", true))()
---FF Script
local vu = game:GetService("VirtualUser")
game:GetService("Players").LocalPlayer.Idled:connect(function()
vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)
loadstring(game:HttpGet("https://raw.githubusercontent.com/wally-rblx/funky-friday-
autoplay/main/main.lua",true))()
local message = Instance.new("Message", workspace)
message.Text = "Loaded! If the script is not working, press 'F9' to check
for any errors."
wait(4.5)
message:Destroy()
---Sonic Speed Simulator
loadstring(game:HttpGet("https://raw.githubusercontent.com/destylol/masterhubv311/
itachi/Main.lua"))()

You might also like