Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local RoBoxingGui = Instance.new("ScreenGui")
- local MainToggle = Instance.new("ImageButton")
- local Deco = Instance.new("TextLabel")
- local MainFrame = Instance.new("Frame")
- local Deco_2 = Instance.new("TextLabel")
- local Deco_3 = Instance.new("TextLabel")
- local SaunaFarmToggle = Instance.new("TextButton")
- local SpeedButtonsToggle = Instance.new("TextButton")
- RoBoxingGui.Name = "Ro-BoxingGui"
- RoBoxingGui.Parent = game.CoreGui
- MainToggle.Name = "MainToggle"
- MainToggle.Parent = RoBoxingGui
- MainToggle.BackgroundColor3 = Color3.new(1, 1, 1)
- MainToggle.BackgroundTransparency = 1
- MainToggle.Position = UDim2.new(0.400000006, 0, 0.949999988, 0)
- MainToggle.Size = UDim2.new(0.200000003, 0, 0.0500000007, 0)
- MainToggle.Image = "rbxassetid://1324633131"
- Deco.Name = "Deco"
- Deco.Parent = MainToggle
- Deco.BackgroundColor3 = Color3.new(1, 1, 1)
- Deco.BackgroundTransparency = 1
- Deco.BorderSizePixel = 0
- Deco.Size = UDim2.new(0.800000012, 0, 1, 0)
- Deco.Font = Enum.Font.SourceSansLight
- Deco.FontSize = Enum.FontSize.Size14
- Deco.Text = "EXPLOIT"
- Deco.TextColor3 = Color3.new(1, 1, 1)
- Deco.TextScaled = true
- Deco.TextSize = 14
- Deco.TextWrapped = true
- Deco.TextXAlignment = Enum.TextXAlignment.Right
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = MainToggle
- MainFrame.BackgroundColor3 = Color3.new(0.976471, 0.803922, 0.784314)
- MainFrame.BorderSizePixel = 0
- MainFrame.Position = UDim2.new(0, 0, 1, 0)
- MainFrame.Size = UDim2.new(1, 0, 2, 0)
- Deco_2.Name = "Deco"
- Deco_2.Parent = MainFrame
- Deco_2.BackgroundColor3 = Color3.new(1, 1, 1)
- Deco_2.BackgroundTransparency = 1
- Deco_2.Size = UDim2.new(0.5, 0, 0.5, 0)
- Deco_2.Font = Enum.Font.SourceSansBold
- Deco_2.FontSize = Enum.FontSize.Size14
- Deco_2.Text = "SAUNA FARM"
- Deco_2.TextColor3 = Color3.new(0, 0, 0)
- Deco_2.TextScaled = true
- Deco_2.TextSize = 14
- Deco_2.TextWrapped = true
- Deco_3.Name = "Deco"
- Deco_3.Parent = MainFrame
- Deco_3.BackgroundColor3 = Color3.new(1, 1, 1)
- Deco_3.BackgroundTransparency = 1
- Deco_3.Position = UDim2.new(0, 0, 0.5, 0)
- Deco_3.Size = UDim2.new(0.5, 0, 0.5, 0)
- Deco_3.Font = Enum.Font.SourceSansBold
- Deco_3.FontSize = Enum.FontSize.Size14
- Deco_3.Text = "SPEED BUTTONS"
- Deco_3.TextColor3 = Color3.new(0, 0, 0)
- Deco_3.TextScaled = true
- Deco_3.TextSize = 14
- Deco_3.TextWrapped = true
- SaunaFarmToggle.Name = "SaunaFarmToggle"
- SaunaFarmToggle.Parent = MainFrame
- SaunaFarmToggle.BackgroundColor3 = Color3.new(1, 0.356863, 0.243137)
- SaunaFarmToggle.BorderColor3 = Color3.new(0.827451, 0.203922, 0.203922)
- SaunaFarmToggle.Position = UDim2.new(0.600000024, 0, 0.0500000007, 0)
- SaunaFarmToggle.Size = UDim2.new(0.300000012, 0, 0.400000006, 0)
- SaunaFarmToggle.Font = Enum.Font.SourceSans
- SaunaFarmToggle.FontSize = Enum.FontSize.Size14
- SaunaFarmToggle.Text = "OFF"
- SaunaFarmToggle.TextColor3 = Color3.new(1, 1, 1)
- SaunaFarmToggle.TextScaled = true
- SaunaFarmToggle.TextSize = 14
- SaunaFarmToggle.TextStrokeTransparency = 0.69999998807907
- SaunaFarmToggle.TextWrapped = true
- SpeedButtonsToggle.Name = "SpeedButtonsToggle"
- SpeedButtonsToggle.Parent = MainFrame
- SpeedButtonsToggle.BackgroundColor3 = Color3.new(1, 0.356863, 0.243137)
- SpeedButtonsToggle.BorderColor3 = Color3.new(0.827451, 0.203922, 0.203922)
- SpeedButtonsToggle.Position = UDim2.new(0.600000024, 0, 0.550000012, 0)
- SpeedButtonsToggle.Size = UDim2.new(0.300000012, 0, 0.400000006, 0)
- SpeedButtonsToggle.Font = Enum.Font.SourceSans
- SpeedButtonsToggle.FontSize = Enum.FontSize.Size14
- SpeedButtonsToggle.Text = "OFF"
- SpeedButtonsToggle.TextColor3 = Color3.new(1, 1, 1)
- SpeedButtonsToggle.TextScaled = true
- SpeedButtonsToggle.TextSize = 14
- SpeedButtonsToggle.TextStrokeTransparency = 0.69999998807907
- SpeedButtonsToggle.TextWrapped = true
- local val = 255
- local on = 0
- MainToggle.MouseEnter:connect(function()
- on = 1
- end)
- MainToggle.MouseLeave:connect(function()
- on = 0
- end)
- spawn (function()
- while true do
- wait()
- if on == 1 then
- while val > 150 do
- wait()
- MainToggle.ImageColor3 = Color3.fromRGB(val,val,val)
- val = val-10
- end
- else
- while val < 257 do
- wait()
- MainToggle.ImageColor3 = Color3.fromRGB(val,val,val)
- val = val+10
- end
- end
- end
- end)
- local down = true
- MainToggle.MouseButton1Down:connect(function()
- if down == true then
- MainToggle.Active = false
- MainToggle:TweenPosition(UDim2.new(0.4,0,0.85,0))
- down = false
- wait(0.5)
- MainToggle.Active = true
- else
- MainToggle.Active = false
- MainToggle:TweenPosition(UDim2.new(0.4,0,0.95,0))
- down = true
- wait(0.5)
- MainToggle.Active = true
- end
- end)
- local enabled = false
- local boxingenabled = false
- SaunaFarmToggle.MouseButton1Down:connect(function()
- if enabled == false then
- enabled = true
- SaunaFarmToggle.BackgroundColor3 = Color3.fromRGB(89 ,255 ,94)
- SaunaFarmToggle.BorderColor3 = Color3.fromRGB(97 ,177 ,85)
- SaunaFarmToggle.Text = "ON"
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-190,3.5,50)
- else
- enabled = false
- SaunaFarmToggle.BackgroundColor3 = Color3.fromRGB(255 ,91 ,62)
- SaunaFarmToggle.BorderColor3 = Color3.fromRGB(211 ,52 ,52)
- SaunaFarmToggle.Text = "OFF"
- end
- end)
- SpeedButtonsToggle.MouseButton1Down:connect(function()
- if boxingenabled == false then
- boxingenabled = true
- SpeedButtonsToggle.BackgroundColor3 = Color3.fromRGB(89 ,255 ,94)
- SpeedButtonsToggle.BorderColor3 = Color3.fromRGB(97 ,177 ,85)
- SpeedButtonsToggle.Text = "ON"
- wait(0.5)
- game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-190,3,50)
- else
- boxingenabled = false
- SpeedButtonsToggle.BackgroundColor3 = Color3.fromRGB(255 ,91 ,62)
- SpeedButtonsToggle.BorderColor3 = Color3.fromRGB(211 ,52 ,52)
- SpeedButtonsToggle.Text = "OFF"
- game.Players.LocalPlayer.Character.Humanoid.Health = 0
- end
- end)
- spawn (function()
- while true do
- wait()
- if enabled == false then
- SpeedButtonsToggle.Visible = false
- Deco_3.Text = "ENABLE SAUNA FARM"
- else
- SpeedButtonsToggle.Visible = true
- Deco_3.Text = "SPEED BUTTONS"
- end
- end
- end)
- spawn (function()
- while true do
- wait()
- if game.Players.LocalPlayer.PlayerGui.Start.Sub_Menu.Settings_Image.Settings.AFK.Current_Value.Value == false then
- SaunaFarmToggle.Visible = false
- Deco_2.Text = "ENABLE AFK"
- else
- SaunaFarmToggle.Visible = true
- Deco_2.Text = "SAUNA FARM"
- end
- end
- end)
- spawn (function()
- while true do
- wait()
- if enabled == true then
- if game.Workspace:findFirstChild("LightHack") then
- else
- local light = Instance.new("Part")
- light.Transparency = 1
- light.Anchored = true
- light.CanCollide = false
- light.Position = Vector3.new(-190,-10,50)
- light.Parent = game.Workspace
- light.Name = "LightHack"
- local glow = Instance.new("PointLight")
- glow.Parent = light
- glow.Brightness = math.huge
- glow.Range = 30
- end
- game.Workspace.Treadmill.Give_Points.CFrame = CFrame.new(-190,4,50)
- game.Workspace.Rope_Training.top.CFrame = CFrame.new(-190,4,50)
- game.Workspace.Rope_Training.bottom.CFrame = CFrame.new(-190,4,50)
- wait(0.1)
- game.Workspace.Treadmill.Give_Points.CFrame = CFrame.new(-190,-10,50)
- game.Workspace.Rope_Training.top.CFrame = CFrame.new(-190,-10,50)
- game.Workspace.Rope_Training.bottom.CFrame = CFrame.new(-190,-10,50)
- end
- end
- end)
- spawn (function()
- while true do
- wait()
- if boxingenabled == true then
- game.ReplicatedStorage.Dummy_Punch5:FireServer()
- game.Workspace.Training.Buttons.Bottom.CFrame = CFrame.new(-189,4,47)
- game.Workspace.Training.Buttons.Right.CFrame = CFrame.new(-189,2,47)
- game.Workspace.Training.Buttons.Top.CFrame = CFrame.new(-191,4,47)
- game.Workspace.Training.Buttons.Left.CFrame = CFrame.new(-191,2,47)
- game.Workspace.Training.Buttons.Bottom.Size = Vector3.new(1,1,1)
- game.Workspace.Training.Buttons.Right.Size = Vector3.new(1,1,1)
- game.Workspace.Training.Buttons.Top.Size = Vector3.new(1,1,1)
- game.Workspace.Training.Buttons.Left.Size = Vector3.new(1,1,1)
- game.Workspace.Training.Buttons.Bottom.CanCollide = false
- game.Workspace.Training.Buttons.Right.CanCollide = false
- game.Workspace.Training.Buttons.Top.CanCollide = false
- game.Workspace.Training.Buttons.Left.CanCollide = false
- game.Workspace.Training.Buttons.Bottom.Transparency = 0
- game.Workspace.Training.Buttons.Right.Transparency = 0
- game.Workspace.Training.Buttons.Top.Transparency = 0
- game.Workspace.Training.Buttons.Left.Transparency = 0
- else
- game.Workspace.Training.Buttons.Bottom.Transparency = 1
- game.Workspace.Training.Buttons.Right.Transparency = 1
- game.Workspace.Training.Buttons.Top.Transparency = 1
- game.Workspace.Training.Buttons.Left.Transparency = 1
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement