Advertisement
MindOfPlayer

Tank Hub

Aug 13th, 2020
1,451
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.63 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("ImageLabel")
  8. local inffire = Instance.new("TextButton")
  9. local fasttank = Instance.new("TextButton")
  10. local noreload = Instance.new("TextButton")
  11. local nocooldown = Instance.new("TextButton")
  12. local TextLabel = Instance.new("TextLabel")
  13. local TextLabel_2 = Instance.new("TextLabel")
  14. local TextLabel_Roundify_12px = Instance.new("ImageLabel")
  15. local TextLabel_3 = Instance.new("TextLabel")
  16.  
  17. --Properties:
  18.  
  19. ScreenGui.Parent = game.CoreGui
  20.  
  21. Frame.Name = "Frame"
  22. Frame.Parent = ScreenGui
  23. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. Frame.BackgroundTransparency = 1.000
  25. Frame.Position = UDim2.new(0.593196273, 0, 0.821355283, 0)
  26. Frame.Size = UDim2.new(0, 387, 0, 121)
  27. Frame.Image = "rbxassetid://3570695787"
  28. Frame.ImageColor3 = Color3.fromRGB(20, 20, 20)
  29. Frame.ScaleType = Enum.ScaleType.Slice
  30. Frame.SliceCenter = Rect.new(100, 100, 100, 100)
  31. Frame.SliceScale = 0.120
  32. Frame.Draggable = true
  33.  
  34. inffire.Name = "inffire"
  35. inffire.Parent = Frame
  36. inffire.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  37. inffire.BorderColor3 = Color3.fromRGB(255, 255, 255)
  38. inffire.BorderSizePixel = 2
  39. inffire.Position = UDim2.new(0.505384922, 0, 0.493471682, 0)
  40. inffire.Size = UDim2.new(0, 80, 0, 50)
  41. inffire.Font = Enum.Font.SourceSans
  42. inffire.Text = "Inf Fire"
  43. inffire.TextColor3 = Color3.fromRGB(255, 255, 255)
  44. inffire.TextSize = 14.000
  45. inffire.MouseButton1Down:connect(function()
  46. mytank = workspace.Tanks["Tank-" .. game.Players.LocalPlayer.Name .. ""]
  47. mytank.Settings.MaxFireRate.Value = 0
  48. end)
  49. fasttank.Name = "fasttank"
  50. fasttank.Parent = Frame
  51. fasttank.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  52. fasttank.BorderColor3 = Color3.fromRGB(255, 255, 255)
  53. fasttank.BorderSizePixel = 2
  54. fasttank.Position = UDim2.new(0.748775303, 0, 0.493471682, 0)
  55. fasttank.Size = UDim2.new(0, 80, 0, 50)
  56. fasttank.Font = Enum.Font.SourceSans
  57. fasttank.Text = "Fast Tank"
  58. fasttank.TextColor3 = Color3.fromRGB(255, 255, 255)
  59. fasttank.TextSize = 14.000
  60. fasttank.MouseButton1Down:connect(function()
  61. mytank = workspace.Tanks["Tank-" .. game.Players.LocalPlayer.Name .. ""]
  62. mytank.Settings.MoveSpeed.Value = 50
  63. mytank.Settings.RotationSpeed.Value = math.huge
  64. end)
  65. noreload.Name = "noreload"
  66. noreload.Parent = Frame
  67. noreload.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  68. noreload.BorderColor3 = Color3.fromRGB(255, 255, 255)
  69. noreload.BorderSizePixel = 2
  70. noreload.Position = UDim2.new(0.274138063, 0, 0.493471682, 0)
  71. noreload.Size = UDim2.new(0, 80, 0, 50)
  72. noreload.Font = Enum.Font.SourceSans
  73. noreload.Text = "No Reload"
  74. noreload.TextColor3 = Color3.fromRGB(255, 255, 255)
  75. noreload.TextSize = 14.000
  76. noreload.MouseButton1Down:connect(function()
  77. mytank = workspace.Tanks["Tank-" .. game.Players.LocalPlayer.Name .. ""]
  78. mytank.Settings.LoadedShots.Value = 2000000000
  79. end)
  80.  
  81. nocooldown.Name = "nocooldown"
  82. nocooldown.Parent = Frame
  83. nocooldown.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  84. nocooldown.BorderColor3 = Color3.fromRGB(255, 255, 255)
  85. nocooldown.BorderSizePixel = 2
  86. nocooldown.Position = UDim2.new(0.0312824063, 0, 0.493471682, 0)
  87. nocooldown.Size = UDim2.new(0, 80, 0, 50)
  88. nocooldown.Font = Enum.Font.SourceSans
  89. nocooldown.Text = "no cooldown"
  90. nocooldown.TextColor3 = Color3.fromRGB(255, 255, 255)
  91. nocooldown.TextSize = 14.000
  92. nocooldown.MouseButton1Down:connect(function()
  93. mytank = workspace.Tanks["Tank-" .. game.Players.LocalPlayer.Name .. ""]
  94. mytank.Settings.AbilityCooldown.Value = 0.1
  95. end)
  96.  
  97. TextLabel.Parent = Frame
  98. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  99. TextLabel.BackgroundTransparency = 1.000
  100. TextLabel.Position = UDim2.new(0.0221369937, 0, 0.0444446914, 0)
  101. TextLabel.Size = UDim2.new(0, 47, 0, 24)
  102. TextLabel.Font = Enum.Font.SourceSans
  103. TextLabel.Text = "Tank"
  104. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  105. TextLabel.TextScaled = true
  106. TextLabel.TextSize = 14.000
  107. TextLabel.TextStrokeColor3 = Color3.fromRGB(255, 255, 255)
  108. TextLabel.TextWrapped = true
  109.  
  110. TextLabel_2.Parent = Frame
  111. TextLabel_2.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  112. TextLabel_2.BackgroundTransparency = 1.000
  113. TextLabel_2.BorderSizePixel = 0
  114. TextLabel_2.Position = UDim2.new(0.143583938, 0, -0.00514191389, 0)
  115. TextLabel_2.Size = UDim2.new(0, 50, 0, 24)
  116. TextLabel_2.Font = Enum.Font.SourceSans
  117. TextLabel_2.Text = "Hub"
  118. TextLabel_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  119. TextLabel_2.TextScaled = true
  120. TextLabel_2.TextSize = 14.000
  121. TextLabel_2.TextWrapped = true
  122.  
  123. TextLabel_Roundify_12px.Name = "TextLabel_Roundify_12px"
  124. TextLabel_Roundify_12px.Parent = TextLabel_2
  125. TextLabel_Roundify_12px.AnchorPoint = Vector2.new(0.5, 0.5)
  126. TextLabel_Roundify_12px.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  127. TextLabel_Roundify_12px.BackgroundTransparency = 1.000
  128. TextLabel_Roundify_12px.Position = UDim2.new(0.5, 0, 0.75, 0)
  129. TextLabel_Roundify_12px.Size = UDim2.new(1, 0, 1, 0)
  130. TextLabel_Roundify_12px.Image = "rbxassetid://3570695787"
  131. TextLabel_Roundify_12px.ImageColor3 = Color3.fromRGB(170, 0, 255)
  132. TextLabel_Roundify_12px.ScaleType = Enum.ScaleType.Slice
  133. TextLabel_Roundify_12px.SliceCenter = Rect.new(100, 100, 100, 100)
  134. TextLabel_Roundify_12px.SliceScale = 0.120
  135.  
  136. TextLabel_3.Parent = Frame
  137. TextLabel_3.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  138. TextLabel_3.BackgroundTransparency = 1.000
  139. TextLabel_3.BorderSizePixel = 0
  140. TextLabel_3.Position = UDim2.new(0.143584028, 0, 0.0444446914, 0)
  141. TextLabel_3.Size = UDim2.new(0, 50, 0, 24)
  142. TextLabel_3.Font = Enum.Font.SourceSans
  143. TextLabel_3.Text = "Hub"
  144. TextLabel_3.TextColor3 = Color3.fromRGB(0, 0, 0)
  145. TextLabel_3.TextScaled = true
  146. TextLabel_3.TextSize = 14.000
  147. TextLabel_3.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement