Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local SuperHeroAdventuresOnline = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local Open = Instance.new("TextButton")
- local Main = Instance.new("Frame")
- local Heading = Instance.new("TextLabel")
- local Power = Instance.new("TextButton")
- local Strength = Instance.new("TextButton")
- local TpQuest = Instance.new("TextButton")
- local AutoFarm = Instance.new("TextButton")
- local Body = Instance.new("TextButton")
- local TrainingPlaces = Instance.new("TextButton")
- local Close = Instance.new("TextButton")
- local Teleports = Instance.new("Frame")
- local Heading_2 = Instance.new("TextLabel")
- local Strength_2 = Instance.new("TextButton")
- local BodyToughness = Instance.new("TextButton")
- local Power_2 = Instance.new("TextButton")
- local VirtualUser = game:service'VirtualUser'
- game:service'Players'.LocalPlayer.Idled:connect(function()
- VirtualUser:CaptureController()
- VirtualUser:ClickButton2(Vector2.new())
- end)
- SuperHeroAdventuresOnline.Name = "Super Hero Adventures Online"
- SuperHeroAdventuresOnline.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- SuperHeroAdventuresOnline.ResetOnSpawn = false
- Frame.Parent = SuperHeroAdventuresOnline
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.Position = UDim2.new(0.926620662, 0, 0.47410357, 0)
- Frame.Size = UDim2.new(0, 100, 0, 25)
- Open.Name = "Open"
- Open.Parent = Frame
- Open.BackgroundColor3 = Color3.new(0, 0, 0)
- Open.Size = UDim2.new(0, 100, 0, 25)
- Open.Font = Enum.Font.SourceSans
- Open.Text = "Open"
- Open.TextColor3 = Color3.new(1, 1, 1)
- Open.TextSize = 14
- Open.MouseButton1Down:connect(function()
- Frame.Visible = false
- Main.Visible = true
- Teleports.Visible = false
- end)
- Main.Name = "Main"
- Main.Parent = SuperHeroAdventuresOnline
- Main.Active = true
- Main.BackgroundColor3 = Color3.new(0, 0, 0)
- Main.Draggable = true
- Main.Position = UDim2.new(0.336689293, 0, 0.300390422, 0)
- Main.Size = UDim2.new(0, 450, 0, 150)
- Main.Visible = false
- Heading.Name = "Heading"
- Heading.Parent = Main
- Heading.BackgroundColor3 = Color3.new(0, 0, 0)
- Heading.Position = UDim2.new(0, 0, -0.00399995642, 0)
- Heading.Size = UDim2.new(0, 400, 0, 50)
- Heading.Font = Enum.Font.ArialBold
- Heading.Text = "Super Hero Adventures Online"
- Heading.TextColor3 = Color3.new(1, 1, 1)
- Heading.TextScaled = true
- Heading.TextSize = 14
- Heading.TextWrapped = true
- local power = false
- Power.Name = "Power"
- Power.Parent = Main
- Power.BackgroundColor3 = Color3.new(0, 0, 0)
- Power.Position = UDim2.new(0, 0, 0.331333339, 0)
- Power.Size = UDim2.new(0, 150, 0, 50)
- Power.Font = Enum.Font.SourceSans
- Power.Text = "Power : OFF"
- Power.TextColor3 = Color3.new(1, 1, 1)
- Power.TextSize = 14
- Power.MouseButton1Down:connect(function()
- if not power then
- Power.Text = 'Power : ON'
- power = true
- repeat
- wait()
- local Event = game:GetService("ReplicatedStorage").RemoteEvents.TrainStatsRemote
- Event:FireServer("Power" , 2)
- wait()
- until power == false
- else
- Power.Text = 'Power : OFF'
- power = false
- end
- end)
- local strength = false
- Strength.Name = "Strength"
- Strength.Parent = Main
- Strength.BackgroundColor3 = Color3.new(0, 0, 0)
- Strength.Position = UDim2.new(0.666666687, 0, 0.33133328, 0)
- Strength.Size = UDim2.new(0, 150, 0, 50)
- Strength.Font = Enum.Font.SourceSans
- Strength.Text = "Strength : OFF"
- Strength.TextColor3 = Color3.new(1, 1, 1)
- Strength.TextSize = 14
- Strength.MouseButton1Down:connect(function()
- if not strength then
- Strength.Text = 'Strength : ON'
- strength = true
- repeat
- wait()
- local Event = game:GetService("ReplicatedStorage").RemoteEvents.TrainStatsRemote
- Event:FireServer("Strength" , 2)
- wait()
- until strength == false
- else
- Strength.Text = 'Strength : OFF'
- strength = false
- end
- end)
- TpQuest.Name = "Tp Quest"
- TpQuest.Parent = Main
- TpQuest.BackgroundColor3 = Color3.new(0, 0, 0)
- TpQuest.Position = UDim2.new(0.333333313, 0, 0.659999967, 0)
- TpQuest.Size = UDim2.new(0, 150, 0, 50)
- TpQuest.Font = Enum.Font.SourceSans
- TpQuest.Text = "Teleport To Quest"
- TpQuest.TextColor3 = Color3.new(1, 1, 1)
- TpQuest.TextSize = 14
- TpQuest.MouseButton1Down:connect(function()
- local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
- for i,v in pairs(game.Workspace["QuestMarkers"]:GetChildren()) do
- if v.Name == questname.Text then
- plr.CFrame = v.CFrame
- wait()
- end
- end
- end)
- local af = false
- AutoFarm.Name = "Auto Farm"
- AutoFarm.Parent = Main
- AutoFarm.BackgroundColor3 = Color3.new(0, 0, 0)
- AutoFarm.Position = UDim2.new(0, 0, 0.662666619, 0)
- AutoFarm.Size = UDim2.new(0, 150, 0, 50)
- AutoFarm.Font = Enum.Font.SourceSans
- AutoFarm.Text = "Auto Farm : OFF"
- AutoFarm.TextColor3 = Color3.new(1, 1, 1)
- AutoFarm.TextSize = 14
- AutoFarm.MouseButton1Down:connect(function()
- if not af then
- AutoFarm.Text = 'Auto Farm : ON'
- af = true
- repeat
- local Plr = game:GetService"Players".LocalPlayer
- local HRP = Plr.Character:FindFirstChild"HumanoidRootPart"
- for _,v in pairs(game.workspace.Mobs:GetChildren()) do
- if string.find(v.Name, "Common Criminal") or string.find(v.Name, "Brutes") or string.find(v.Name, "Karate Students") or string.find(v.Name, "Corrupt Police Officers") or string.find(v.Name, "Green Aliens") or string.find(v.Name, "Venom Enhanced Thugs") or string.find(v.Name, "Hand Assasin") or string.find(v.Name, "Hand Soldier") then
- for _,b in pairs(v:GetDescendants()) do
- if string.find(b.Name, "Common Criminal") or string.find(b.Name, "Brutes") or string.find(b.Name, "Karate Students") or string.find(b.Name, "Corrupt Police Officers") or string.find(b.Name, "Green Alien") or string.find(b.Name, "Venom Enhanced Thugs") or string.find(b.Name, "Hand Soldier") and b:FindFirstChild"Humanoid".Health > 1 then
- HRP.CFrame = b:FindFirstChild"HumanoidRootPart".CFrame*CFrame.new(0,0,4.5)
- game:GetService"ReplicatedStorage".RemoteEvents.PunchRemote:FireServer()
- wait(.1)
- end
- end
- end
- end
- wait()
- until af == false
- else
- AutoFarm.Text = 'Auto Farm : OFF'
- af = false
- end
- end)
- local body = false
- Body.Name = "Body"
- Body.Parent = Main
- Body.BackgroundColor3 = Color3.new(0, 0, 0)
- Body.Position = UDim2.new(0.333333373, 0, 0.331333399, 0)
- Body.Size = UDim2.new(0, 150, 0, 50)
- Body.Font = Enum.Font.SourceSans
- Body.Text = "Body Toughness : OFF"
- Body.TextColor3 = Color3.new(1, 1, 1)
- Body.TextSize = 14
- Body.MouseButton1Down:connect(function()
- if not body then
- Body.Text = 'Body Toughness : ON'
- body = true
- repeat
- while true do
- wait()
- local Event = game:GetService("ReplicatedStorage").RemoteEvents.TrainStatsRemote
- Event:FireServer("Body" , 2)
- end
- wait()
- until body == false
- else
- Body.Text = 'Body Toughness : OFF'
- body = false
- end
- end)
- TrainingPlaces.Name = "Training Places"
- TrainingPlaces.Parent = Main
- TrainingPlaces.BackgroundColor3 = Color3.new(0, 0, 0)
- TrainingPlaces.Position = UDim2.new(0.666666687, 0, 0.660000026, 0)
- TrainingPlaces.Size = UDim2.new(0, 150, 0, 50)
- TrainingPlaces.Font = Enum.Font.SourceSans
- TrainingPlaces.Text = "Training Places"
- TrainingPlaces.TextColor3 = Color3.new(1, 1, 1)
- TrainingPlaces.TextSize = 14
- TrainingPlaces.MouseButton1Down:connect(function()
- if Teleports.Visible == false then
- Teleports.Visible = true
- elseif Teleports.Visible == true then
- Teleports.Visible = false
- end
- end)
- Close.Name = "Close"
- Close.Parent = Main
- Close.BackgroundColor3 = Color3.new(0, 0, 0)
- Close.Position = UDim2.new(0.888888896, 0, -0.00400000019, 0)
- Close.Size = UDim2.new(0, 50, 0, 49)
- Close.Font = Enum.Font.SourceSans
- Close.Text = "X"
- Close.TextColor3 = Color3.new(1, 1, 1)
- Close.TextSize = 14
- Close.MouseButton1Down:connect(function()
- Frame.Visible = true
- Main.Visible = false
- end)
- Teleports.Name = "Teleports"
- Teleports.Parent = SuperHeroAdventuresOnline
- Teleports.Active = true
- Teleports.BackgroundColor3 = Color3.new(0, 0, 0)
- Teleports.Draggable = true
- Teleports.Position = UDim2.new(0.0491771996, 0, 0.300390422, 0)
- Teleports.Size = UDim2.new(0, 250, 0, 150)
- Teleports.Visible = false
- Heading_2.Name = "Heading"
- Heading_2.Parent = Teleports
- Heading_2.BackgroundColor3 = Color3.new(0, 0, 0)
- Heading_2.Position = UDim2.new(0, 0, -0.010666606, 0)
- Heading_2.Size = UDim2.new(0, 250, 0, 50)
- Heading_2.Font = Enum.Font.ArialBold
- Heading_2.Text = "Training Places"
- Heading_2.TextColor3 = Color3.new(1, 1, 1)
- Heading_2.TextScaled = true
- Heading_2.TextSize = 14
- Heading_2.TextWrapped = true
- local st = false
- Strength_2.Name = "Strength"
- Strength_2.Parent = Teleports
- Strength_2.BackgroundColor3 = Color3.new(0, 0, 0)
- Strength_2.Position = UDim2.new(0, 0, 0.664666533, 0)
- Strength_2.Size = UDim2.new(0, 250, 0, 50)
- Strength_2.Font = Enum.Font.SourceSans
- Strength_2.Text = "Strength : OFF"
- Strength_2.TextColor3 = Color3.new(1, 1, 1)
- Strength_2.TextSize = 28
- Strength_2.TextWrapped = true
- Strength_2.MouseButton1Down:connect(function()
- if not st then
- Strength_2.Text = 'Strength : ON'
- st = true
- repeat
- local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
- for i,v in pairs(game.Workspace["GameStuff"]:GetChildren()) do
- if v.Name == "MedPunchingBag" then
- v.CFrame = plr.CFrame
- v.CanCollide = false
- wait()
- end
- end
- wait()
- until st == false
- else
- Strength_2.Text = 'Strength : OFF'
- st = false
- end
- end)
- local bt = false
- BodyToughness.Name = "Body Toughness"
- BodyToughness.Parent = Teleports
- BodyToughness.BackgroundColor3 = Color3.new(0, 0, 0)
- BodyToughness.Position = UDim2.new(0.497333318, 0, 0.319999903, 0)
- BodyToughness.Size = UDim2.new(0, 126, 0, 50)
- BodyToughness.Font = Enum.Font.SourceSans
- BodyToughness.Text = "Body Toughness : OFF"
- BodyToughness.TextColor3 = Color3.new(1, 1, 1)
- BodyToughness.TextSize = 14
- BodyToughness.MouseButton1Down:connect(function()
- if not bt then
- BodyToughness.Text = 'Body Toughness : ON'
- bt = true
- repeat
- local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
- for i,v in pairs(game.Workspace["GameStuff"]:GetChildren()) do
- if v.Name == "MedTrainingRock" then
- v.CFrame = plr.CFrame
- wait()
- v.CanCollide = false
- end
- end
- wait()
- until bt == false
- else
- BodyToughness.Text = 'Body Toughness : OFF'
- bt = false
- end
- end)
- local pt = false
- Power_2.Name = "Power"
- Power_2.Parent = Teleports
- Power_2.BackgroundColor3 = Color3.new(0, 0, 0)
- Power_2.Position = UDim2.new(0, 0, 0.322666585, 0)
- Power_2.Size = UDim2.new(0, 125, 0, 50)
- Power_2.Font = Enum.Font.SourceSans
- Power_2.Text = "Power : OFF"
- Power_2.TextColor3 = Color3.new(1, 1, 1)
- Power_2.TextSize = 14
- Power_2.MouseButton1Down:connect(function()
- if not pt then
- Power_2.Text = 'Power : ON'
- pt = true
- repeat
- local plr = game.Workspace[game.Players.LocalPlayer.Name].HumanoidRootPart
- for i,v in pairs(game.Workspace["GameStuff"]:GetChildren()) do
- if v.Name == "MedAbyss" then
- v.CFrame = plr.CFrame
- v.CanCollide = false
- wait()
- end
- end
- wait()
- until pt == false
- else
- Power_2.Text = 'Power : OFF'
- pt = false
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement