Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Instances:
- local ScreenGui = Instance.new("ScreenGui")
- local GUIBody = Instance.new("Frame")
- local ImageLabel = Instance.new("ImageLabel")
- local JailShitter = Instance.new("TextButton")
- local AutoRob = Instance.new("TextButton")
- local Close = Instance.new("TextButton")
- local OpenMain = Instance.new("Frame")
- local OpenButton = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.CoreGui
- GUIBody.Name = "GUIBody"
- GUIBody.Parent = ScreenGui
- GUIBody.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- GUIBody.Position = UDim2.new(0.247040257, 0, 0.205159709, 0)
- GUIBody.Size = UDim2.new(0, 640, 0, 480)
- GUIBody.Active = true
- GUIBody.Draggable = true
- ImageLabel.Parent = GUIBody
- ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- ImageLabel.Size = UDim2.new(0, 640, 0, 480)
- ImageLabel.Image = "rbxassetid://5516674150"
- JailShitter.Name = "JailShitter"
- JailShitter.Parent = GUIBody
- JailShitter.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- JailShitter.Position = UDim2.new(0.34375, 0, 0.208333328, 0)
- JailShitter.Size = UDim2.new(0, 200, 0, 50)
- JailShitter.Font = Enum.Font.ArialBold
- JailShitter.Text = "Auto Farm"
- JailShitter.TextColor3 = Color3.fromRGB(0, 0, 0)
- JailShitter.TextSize = 25.000
- JailShitter.MouseButton1Down:connect(function()JailShitter.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- end)
- JailShitter.TextWrapped = true
- JailShitter.MouseButton1Down:connect(function()
- -- Below this is script to the auto farm
- function Tween(time,pos)
- pcall(function()
- workspace.Gravity = 0
- game:GetService("TweenService"):Create(game.Players.LocalPlayer.Character.HumanoidRootPart, TweenInfo.new(time, Enum.EasingStyle.Linear), {CFrame = pos}):Play() wait(time)
- workspace.Gravity = 196.19999694824
- end)
- end
- function Repeat()
- Tween(1,game:GetService("Workspace").BoatStages.NormalStages.CaveStage1.DarknessPart.CFrame)
- Tween(18,game:GetService("Workspace").BoatStages.NormalStages.CaveStage10.DarknessPart.CFrame)
- Tween(2,game:GetService("Workspace").GoldenChest.TreasureChest.Top.Union.CFrame + Vector3.new(0,10,0))
- pcall(function()
- firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart,game:GetService("Workspace").GoldenChest.Collider,0)
- end) wait(5)
- Repeat()
- end
- Repeat()
- -- End of the auto farm script
- end)
- AutoRob.Name = "AutoRob"
- AutoRob.Parent = GUIBody
- AutoRob.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- AutoRob.Position = UDim2.new(0.34375, 0, 0.416666657, 0)
- AutoRob.Size = UDim2.new(0, 200, 0, 50)
- AutoRob.Font = Enum.Font.ArialBold
- AutoRob.Text = "Infinite Blocks"
- AutoRob.TextColor3 = Color3.fromRGB(0, 0, 0)
- AutoRob.TextSize = 25.000
- AutoRob.MouseButton1Down:connect(function()AutoRob.BackgroundColor3 = Color3.fromRGB(0, 255, 0)
- end)
- AutoRob.MouseButton1Down:connect(function()
- -- Below this is a script for infinite blocks
- for i,v in pairs(game:GetService("Players").LocalPlayer.PlayerGui.BuildGui.InventoryFrame.ScrollingFrame.BlocksFrame:GetChildren()) do
- if v:FindFirstChild("AmountText") then
- v.AmountText.Text = 69420
- v.AmountText.Changed:Connect(function()
- v.AmountText.Text = 69420
- end)
- end
- end
- -- End of the infinite block script
- end)
- Close.Name = "Close"
- Close.Parent = GUIBody
- Close.BackgroundColor3 = Color3.fromRGB(170, 0, 0)
- Close.Position = UDim2.new(0.953125, 0, 0, 0)
- Close.Size = UDim2.new(0, 30, 0, 30)
- Close.Font = Enum.Font.SourceSans
- Close.Text = "X"
- Close.TextColor3 = Color3.fromRGB(0, 0, 0)
- Close.TextScaled = true
- Close.TextSize = 14.000
- Close.TextWrapped = true
- Close.MouseButton1Down:connect(function()
- GUIBody.Visible = false
- OpenMain.Visible = true
- end)
- OpenMain.Name = "OpenMain"
- OpenMain.Parent = ScreenGui
- OpenMain.BackgroundColor3 = Color3.fromRGB(0, 85, 0)
- OpenMain.Position = UDim2.new(0, 0, 0.444717467, 0)
- OpenMain.Size = UDim2.new(0, 80, 0, 60)
- OpenMain.Draggable = true
- OpenMain.Active = true
- OpenButton.Name = "OpenButton"
- OpenButton.Parent = OpenMain
- OpenButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0)
- OpenButton.Size = UDim2.new(0, 80, 0, 40)
- OpenButton.Font = Enum.Font.SourceSans
- OpenButton.Text = "Open"
- OpenButton.TextColor3 = Color3.fromRGB(0, 0, 0)
- OpenButton.TextSize = 14.000
- OpenButton.MouseButton1Down:connect(function()
- GUIBody.Visible = true
- OpenMain.Visible = false
- end)
- -- end of the build a boat script
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement