
Carpet Cleaning Simulator script: Autofarm cleaning tasks

Carpet Cleaning Simulator script: Autofarm cleaning tasks
- Author
- Wwordpress-importPublished by
- Access
- NO KEY
- Published
- Updated
- 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 · LuaReview before running. Use scripts responsibly.
1
-- GUI Oluşturma2
local ScreenGui = Instance.new("ScreenGui")3
local MainFrame = Instance.new("Frame")4
local Title = Instance.new("TextLabel")5
local SelectButton = Instance.new("TextButton") -- Yeni Buton6
local FinishButton = Instance.new("TextButton")7
local UnloadButton = Instance.new("TextButton")8
9
-- Ayarlar10
ScreenGui.Name = "JobControlGUI"11
ScreenGui.Parent = game:GetService("Players").LocalPlayer:WaitForChild("PlayerGui")12
ScreenGui.ResetOnSpawn = false13
14
MainFrame.Name = "MainFrame"15
MainFrame.Parent = ScreenGui16
MainFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35)17
MainFrame.Position = UDim2.new(0.5, -100, 0.5, -100)18
MainFrame.Size = UDim2.new(0, 200, 0, 200) -- Boyutu biraz artırdım19
MainFrame.Active = true20
MainFrame.Draggable = true21
22
local MainCorner = Instance.new("UICorner", MainFrame)23
MainCorner.CornerRadius = UDim.new(0, 10)24
25
-- Başlık26
Title.Name = "Title"27
Title.Parent = MainFrame28
Title.BackgroundTransparency = 129
Title.Size = UDim2.new(1, 0, 0, 40)30
Title.Font = Enum.Font.GothamBold31
Title.Text = "Finish Job %100"32
Title.TextColor3 = Color3.fromRGB(255, 255, 255)33
Title.TextSize = 1834
35
-- 1. Select Job Button (Mavi Buton - Yeni eklenen)36
SelectButton.Name = "SelectButton"37
SelectButton.Parent = MainFrame38
SelectButton.BackgroundColor3 = Color3.fromRGB(45, 100, 150)39
SelectButton.Position = UDim2.new(0.1, 0, 0.25, 0)40
SelectButton.Size = UDim2.new(0.8, 0, 0.2, 0)41
SelectButton.Font = Enum.Font.GothamSemibold42
SelectButton.Text = "Select Job"43
SelectButton.TextColor3 = Color3.fromRGB(255, 255, 255)44
SelectButton.TextSize = 1445
Instance.new("UICorner", SelectButton).CornerRadius = UDim.new(0, 6)46
47
-- 2. Finish Job Button (Yeşil Buton)48
FinishButton.Name = "FinishButton"49
FinishButton.Parent = MainFrame50
FinishButton.BackgroundColor3 = Color3.fromRGB(45, 150, 45)51
FinishButton.Position = UDim2.new(0.1, 0, 0.5, 0)52
FinishButton.Size = UDim2.new(0.8, 0, 0.2, 0)53
FinishButton.Font = Enum.Font.GothamSemibold54
FinishButton.Text = "Finish Job"55
FinishButton.TextColor3 = Color3.fromRGB(255, 255, 255)56
FinishButton.TextSize = 1457
Instance.new("UICorner", FinishButton).CornerRadius = UDim.new(0, 6)58
59
-- 3. Unload Button (Kırmızı Buton)60
UnloadButton.Name = "UnloadButton"61
UnloadButton.Parent = MainFrame62
UnloadButton.BackgroundColor3 = Color3.fromRGB(150, 45, 45)63
UnloadButton.Position = UDim2.new(0.1, 0, 0.75, 0)64
UnloadButton.Size = UDim2.new(0.8, 0, 0.2, 0)65
UnloadButton.Font = Enum.Font.GothamSemibold66
UnloadButton.Text = "Unload"67
UnloadButton.TextColor3 = Color3.fromRGB(255, 255, 255)68
UnloadButton.TextSize = 1469
Instance.new("UICorner", UnloadButton).CornerRadius = UDim.new(0, 6)70
71
-- FONKSİYONLAR72
73
-- Select Job Fonksiyonu74
SelectButton.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 then81
remote:FireServer(unpack(args))82
SelectButton.Text = "Job Selected!"83
task.wait(1)84
SelectButton.Text = "Select Best Job"85
end86
end)87
88
-- Finish Job Fonksiyonu89
FinishButton.MouseButton1Click:Connect(function()90
local args = {91
1,92
2559958393
}94
local remote = game:GetService("ReplicatedStorage"):WaitForChild("Remotes"):WaitForChild("RequestJobComplete", 5)95
if remote then96
remote:FireServer(unpack(args))97
FinishButton.Text = "Job Completed!"98
task.wait(1)99
FinishButton.Text = "Finish Job"100
end101
end)102
103
-- Unload Fonksiyonu104
UnloadButton.MouseButton1Click:Connect(function()105
ScreenGui:Destroy()106
end)Change Log
No change log entries yet
Updates from the script author will appear here after edits are published.


Comments
…