• We just launched and are currently in beta. Join us as we build and grow the community.

[RELEASE][ROBLOX] Saber Simulator GUI (AUTO-FARM)

bb13182

Penetration Tester
B Rep
0
0
0
Rep
0
B Vouches
0
0
0
Vouches
0
Posts
157
Likes
12
Bits
2 MONTHS
2 2 MONTHS OF SERVICE
LEVEL 1 300 XP
Code:
local SaberSimulator = Instance.new("ScreenGui")
local justatext = Instance.new("TextLabel")
local button = Instance.new("TextButton")

SaberSimulator.Name = "Saber Simulator"
SaberSimulator.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
SaberSimulator.ResetOnSpawn = false

justatext.Name = "justatext"
justatext.Parent = SaberSimulator
justatext.BackgroundColor3 = Color3.new(1, 1, 1)
justatext.BackgroundTransparency = 1
justatext.Position = UDim2.new(0.130479097, 0, 0.0959752351, 0)
justatext.Size = UDim2.new(0, 200, 0, 50)
justatext.Font = Enum.Font.SourceSans
justatext.Text = "Auto Coins Farm"
justatext.TextColor3 = Color3.new(0, 0, 0)
justatext.TextScaled = true
justatext.TextSize = 14
justatext.TextWrapped = true

button.Name = "button"
button.Parent = SaberSimulator
button.BackgroundColor3 = Color3.new(0, 1, 0)
button.Position = UDim2.new(0.190621808, 0, 0.250773996, 0)
button.Size = UDim2.new(0, 81, 0, 56)
button.Font = Enum.Font.SourceSans
button.Text = "ON"
button.TextColor3 = Color3.new(0, 0, 0)
button.TextScaled = true
button.TextSize = 14
button.TextWrapped = true

local function CKCP_fake_script()
local script = Instance.new('LocalScript', SaberSimulator)

on = false

function changebutton()
if on == false then
on = true
script.Parent.button.Text = "OFF"
script.Parent.button.BackgroundColor3 = Color3.new(255, 0, 0)

elseif on == true then
on = false
script.Parent.button.Text = "ON"
script.Parent.button.BackgroundColor3 = Color3.new(0, 255, 0)
end

end

script.Parent.button.MouseButton1Down:connect(function()
if script.Parent.button.Text == "ON" and on == false then
changebutton()
repeat
game.Workspace["24Lego"]:findFirstChildOfClass("Tool").RemoteClick:FireServer()
game.ReplicatedStorage.Events.Clicked:FireServer()

for i, v in pairs(game:GetService("Workspace").CoinsHolder:children()) do
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.CFrame
wait()
game.Workspace["24Lego"]:findFirstChildOfClass("Tool").RemoteClick:FireServer()
game.ReplicatedStorage.Events.Clicked:FireServer()
end

currentpos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame

game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame  = game:GetService("Workspace").Locations.Sell.CFrame
wait(2)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = currentpos
until on == false
elseif on == true then
changebutton()
end
end)

end
coroutine.wrap(CKCP_fake_script)()
Automatically farms coins and sells them for you. Also toggle-able..
 

426,802

310,919

310,928

Top