BBobloScript
AccountLog in or create an account to publish scripts.
Log inCreate account

Browse

ScriptsPlacesPopular ScriptsUsers

Script types

Keyless scriptsKey system scriptsOpen source scripts

Tools

Submit Script

Community

DiscordTelegram
BBobloScript
Log in
BBobloScript

Free Roblox scripts, script hub, and Roblox game tools for the community.

Roblox is a trademark of Roblox Corporation. This website is not affiliated with Roblox Corporation.

© 2026 BobloScript. All rights reserved.

Legal

Terms of ServicePrivacy PolicyCookie PolicyContent PolicyCopyright / DMCADisclaimer

Company

AboutContact

Resources

SitemapSitemap XML
BBobloScript
AccountLog in or create an account to publish scripts.
Log inCreate account

Browse

ScriptsPlacesPopular ScriptsUsers

Script types

Keyless scriptsKey system scriptsOpen source scripts

Tools

Submit Script

Community

DiscordTelegram
Home›Scripts›Carpet Cleaning Simulator
On this page
Script DescriptionScript FunctionsScript CodeChange LogCommentsRelated scripts
Our Discord ChannelOur Telegram

Carpet Cleaning Simulator script: Autofarm cleaning tasks

Game
Carpet Cleaning Simulator2 scripts · 0 place views
Author
Wwordpress-importPublished by
Open Roblox Place
·

Carpet Cleaning Simulator script: Autofarm cleaning tasks

Game
Carpet Cleaning Simulator →2 scripts · 0 place views
Author
W
wordpress-importPublished by
Open Roblox Place
·
Access
NO KEY
Published
Published Apr 25
Updated
Updated Jun 29
Views
0 views

Script Description

Select Best Location — Automatically chooses the most efficient cleaning area to maximize earnings. Finish 100% (Money Only) — Completes cleaning tasks instantly for full money rewards without manual work.

Script Functions

2 functions
  • Select Best Location — Automatically chooses the most efficient cleaning area to maximize earnings.
  • Finish 100% (Money Only) — Completes cleaning tasks instantly for full money rewards without manual work.

Script Code

106 lines · 3.49 KB · Lua

Review before running. Use scripts responsibly.

1-- GUI Oluşturma
2local ScreenGui = Instance.new("ScreenGui")
3local MainFrame = Instance.new("Frame")
4local Title = Instance.new("TextLabel")
5local SelectButton = Instance.new("TextButton") -- Yeni Buton
6local FinishButton = Instance.new("TextButton")
7local UnloadButton = Instance.new("TextButton")
8
9-- Ayarlar
10ScreenGui.Name = "JobControlGUI"
11ScreenGui.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")
12ScreenGui.ResetOnSpawn = false
13
14MainFrame.Name = "MainFrame"
15MainFrame.Parent = ScreenGui
16MainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)
17MainFrame.Position = UDim2.new(0.5, -100, 0.5, -100)
18MainFrame.Size = UDim2.new(0, 200, 0, 200) -- Boyutu biraz artırdım
19MainFrame.Active = true
20MainFrame.Draggable = true
21
22local MainCorner = Instance.new("UICorner", MainFrame)
23MainCorner.CornerRadius = UDim.new(0, 10)
24
25-- Başlık
26Title.Name = "Title"
27Title.Parent = MainFrame
28Title.BackgroundTransparency = 1
29Title.Size = UDim2.new(1, 0, 0, 40)
30Title.Font = Enum.Font.GothamBold
31Title.Text = "Finish Job %100"
32Title.TextColor3 = Color3.fromRGB(255, 255, 255)
33Title.TextSize = 18
34
35-- 1. Select Job Button (Mavi Buton - Yeni eklenen)
36SelectButton.Name = "SelectButton"
37SelectButton.Parent = MainFrame
38SelectButton.BackgroundColor3 = Color3.fromRGB(45, 100, 150)
39SelectButton.Position = UDim2.new(0.1, 0, 0.25, 0)
40SelectButton.Size = UDim2.new(0.8, 0, 0.2, 0)
41SelectButton.Font = Enum.Font.GothamSemibold
42SelectButton.Text = "Select Job"
43SelectButton.TextColor3 = Color3.fromRGB(255, 255, 255)
44SelectButton.TextSize = 14
45Instance.new("UICorner", SelectButton).CornerRadius = UDim.new(0, 6)
46
47-- 2. Finish Job Button (Yeşil Buton)
48FinishButton.Name = "FinishButton"
49FinishButton.Parent = MainFrame
50FinishButton.BackgroundColor3 = Color3.fromRGB(45, 150, 45)
51FinishButton.Position = UDim2.new(0.1, 0, 0.5, 0)
52FinishButton.Size = UDim2.new(0.8, 0, 0.2, 0)
53FinishButton.Font = Enum.Font.GothamSemibold
54FinishButton.Text = "Finish Job"
55FinishButton.TextColor3 = Color3.fromRGB(255, 255, 255)
56FinishButton.TextSize = 14
57Instance.new("UICorner", FinishButton).CornerRadius = UDim.new(0, 6)
58
59-- 3. Unload Button (Kırmızı Buton)
60UnloadButton.Name = "UnloadButton"
61UnloadButton.Parent = MainFrame
62UnloadButton.BackgroundColor3 = Color3.fromRGB(150, 45, 45)
63UnloadButton.Position = UDim2.new(0.1, 0, 0.75, 0)
64UnloadButton.Size = UDim2.new(0.8, 0, 0.2, 0)
65UnloadButton.Font = Enum.Font.GothamSemibold
66UnloadButton.Text = "Unload"
67UnloadButton.TextColor3 = Color3.fromRGB(255, 255, 255)
68UnloadButton.TextSize = 14
69Instance.new("UICorner", UnloadButton).CornerRadius = UDim.new(0, 6)
70
71-- FONKSİYONLAR
72
73-- Select Job Fonksiyonu
74SelectButton.MouseButton1Click:Connect(function()
75 local args = {
76 "Hanger",
77 "Perfect"
78 }
79 local remote = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("SelectJob", 5)
80 if remote then
81 remote:FireServer(unpack(args))
82 SelectButton.Text = "Job Selected!"
83 task.wait(1)
84 SelectButton.Text = "Select Best Job"
85 end
86end)
87
88-- Finish Job Fonksiyonu
89FinishButton.MouseButton1Click:Connect(function()
90 local args = {
91 1,
92 25599583
93 }
94 local remote = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("RequestJobComplete", 5)
95 if remote then
96 remote:FireServer(unpack(args))
97 FinishButton.Text = "Job Completed!"
98 task.wait(1)
99 FinishButton.Text = "Finish Job"
100 end
101end)
102
103-- Unload Fonksiyonu
104UnloadButton.MouseButton1Click:Connect(function()
105 ScreenGui:Destroy()
106end)

Change Log

No change log entries yet

Updates from the script author will appear here after edits are published.

Comments

…
0/2000
Loading comments…

More Carpet Cleaning Simulator scripts

Open place hub
Carpet Cleaning Simulator script: Auto Job, Instant Clean script cover for Carpet Cleaning Simulator
May 15NO KEY 0 views

Carpet Cleaning Simulator script: Auto Job, Instant Clean

Carpet Cleaning Simulator

Wwordpress-import