Advertisement
ScriptingGuy

Combat Adventure Script [Work]

Mar 23rd, 2020
214
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.35 KB | None | 0 0
  1. The Game Link : https://www.roblox.com/games/4647014808/REBALANCING-Combat-Adventures
  2.  
  3.  
  4. -- Good Gui
  5. local ScreenGui = Instance.new("ScreenGui")
  6. local Main = Instance.new("Frame")
  7. local AutoSwing = Instance.new("TextButton")
  8. local AutoSell = Instance.new("TextButton")
  9. local UnlockIslands = Instance.new("TextButton")
  10. local Button2 = Instance.new("TextButton")
  11. local Button1 = Instance.new("TextButton")
  12. local button3 = Instance.new("TextButton")
  13. local GuiLabel = Instance.new("TextLabel")
  14.  
  15. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = ScreenGui
  20. Main.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  21. Main.Position = UDim2.new(0.110698372, 0, 0.304538786, 0)
  22. Main.Size = UDim2.new(0, 462, 0, 212)
  23. Main.Style = Enum.FrameStyle.ChatRed
  24.  
  25. AutoSwing.Name = "AutoSwing"
  26. AutoSwing.Parent = Main
  27. AutoSwing.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  28. AutoSwing.BorderSizePixel = 5
  29. AutoSwing.Position = UDim2.new(0.00168665545, 0, 0.753871441, 0)
  30. AutoSwing.Size = UDim2.new(0, 120, 0, 50)
  31. AutoSwing.Font = Enum.Font.SourceSans
  32. AutoSwing.Text = "Auto Swing"
  33. AutoSwing.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. AutoSwing.TextScaled = true
  35. AutoSwing.TextSize = 14.000
  36. AutoSwing.TextWrapped = true
  37. AutoSwing.MouseButton1Click:connect(function(AutoSwing)
  38.  
  39. while true do
  40. wait()
  41. local tool = game.Players.LocalPlayer.Character.Weapon
  42. tool:Activate()
  43. end
  44.  
  45. end)
  46.  
  47. AutoSell.Name = "AutoSell"
  48. AutoSell.Parent = Main
  49. AutoSell.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  50. AutoSell.BorderSizePixel = 5
  51. AutoSell.Position = UDim2.new(0.00168665545, 0, 0.272739381, 0)
  52. AutoSell.Size = UDim2.new(0, 120, 0, 50)
  53. AutoSell.Font = Enum.Font.SourceSans
  54. AutoSell.Text = "Auto Sell"
  55. AutoSell.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. AutoSell.TextScaled = true
  57. AutoSell.TextSize = 14.000
  58. AutoSell.TextWrapped = true
  59. AutoSell.MouseButton1Click:connect(function(AutoSell)
  60.  
  61. while true do
  62. wait()
  63. local pos = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  64. if game.Players.LocalPlayer.PlayerGui.GameInterface.MainFrame.MaxStrengthInfoFrame.Visible == true then
  65. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-74.365, -3.5, -61.363)
  66. wait(0.7)
  67. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(pos)
  68. end
  69. end
  70.  
  71. end)
  72.  
  73. UnlockIslands.Name = "UnlockIslands"
  74. UnlockIslands.Parent = Main
  75. UnlockIslands.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  76. UnlockIslands.BorderSizePixel = 5
  77. UnlockIslands.Position = UDim2.new(0.356665015, 0, 0.263305426, 0)
  78. UnlockIslands.Size = UDim2.new(0, 120, 0, 50)
  79. UnlockIslands.Font = Enum.Font.SourceSans
  80. UnlockIslands.Text = "Unlock All Islands"
  81. UnlockIslands.TextColor3 = Color3.fromRGB(0, 0, 0)
  82. UnlockIslands.TextScaled = true
  83. UnlockIslands.TextSize = 14.000
  84. UnlockIslands.TextWrapped = true
  85. UnlockIslands.MouseButton1Click:connect(function(UnlockIslands)
  86.  
  87. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(135.50058, 3736.89868, -4.5386076, 0.688807905, 4.83267932e-08, -0.724943936, -4.57227358e-08, 1, 2.32191955e-08, 0.724943936, 1.71528534e-08, 0.688807905)
  88. wait(1)
  89. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(65.3566284, 7554.79834, -77.2492523, -0.13587226, 1.89816927e-08, -0.990726352, 8.1358202e-08, 1, 8.00157274e-09, 0.990726352, -7.95165249e-08, -0.13587226)
  90. wait(1)
  91. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(42.1031609, 11364.2002, -78.2042084, 0.749752343, -9.92956473e-08, 0.661718547, 2.35263133e-08, 1, 1.23401009e-07, -0.661718547, -7.69523965e-08, 0.749752343)
  92. wait(1)
  93. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(38.7351265, 15074.0029, -80.467186, -0.980720162, 2.5981544e-08, 0.195417345, 2.26025367e-08, 1, -1.95211971e-08, -0.195417345, -1.47279051e-08, -0.980720162)
  94.  
  95. end)
  96.  
  97. Button2.Name = "Button2"
  98. Button2.Parent = Main
  99. Button2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  100. Button2.BorderSizePixel = 5
  101. Button2.Position = UDim2.new(0.358829528, 0, 0.749154449, 0)
  102. Button2.Size = UDim2.new(0, 120, 0, 50)
  103. Button2.Font = Enum.Font.SourceSans
  104. Button2.TextColor3 = Color3.fromRGB(0, 0, 0)
  105. Button2.TextSize = 14.000
  106.  
  107. Button1.Name = "Button1"
  108. Button1.Parent = Main
  109. Button1.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  110. Button1.BorderSizePixel = 5
  111. Button1.Position = UDim2.new(0.702985346, 0, 0.268022418, 0)
  112. Button1.Size = UDim2.new(0, 120, 0, 50)
  113. Button1.Font = Enum.Font.SourceSans
  114. Button1.TextColor3 = Color3.fromRGB(0, 0, 0)
  115. Button1.TextSize = 14.000
  116.  
  117. button3.Name = "button3"
  118. button3.Parent = Main
  119. button3.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  120. button3.BorderSizePixel = 5
  121. button3.Position = UDim2.new(0.702985346, 0, 0.739720523, 0)
  122. button3.Size = UDim2.new(0, 120, 0, 50)
  123. button3.Font = Enum.Font.SourceSans
  124. button3.TextColor3 = Color3.fromRGB(0, 0, 0)
  125. button3.TextSize = 14.000
  126.  
  127. GuiLabel.Name = "GuiLabel"
  128. GuiLabel.Parent = Main
  129. GuiLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  130. GuiLabel.BorderSizePixel = 5
  131. GuiLabel.Position = UDim2.new(0.0221885256, 0, -0.0413190722, 0)
  132. GuiLabel.Size = UDim2.new(0, 410, 0, 43)
  133. GuiLabel.Font = Enum.Font.SourceSans
  134. GuiLabel.Text = "Combat Adventures Gui"
  135. GuiLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  136. GuiLabel.TextScaled = true
  137. GuiLabel.TextSize = 14.000
  138. GuiLabel.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement