Advertisement
karobloxYT

Untitled

Aug 18th, 2020
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.95 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local TextLabel = Instance.new("TextLabel")
  4. local weapon = Instance.new("TextBox")
  5. local Swordon = Instance.new("TextButton")
  6. local Swordoff = Instance.new("TextButton")
  7. local Backpackoff = Instance.new("TextButton")
  8. local Backpackon = Instance.new("TextButton")
  9. local Farmoff = Instance.new("TextButton")
  10. local Farmon = Instance.new("TextButton")
  11. local equipon = Instance.new("TextButton")
  12. local equipoff = Instance.new("TextButton")
  13. --Properties:
  14. ScreenGui.Parent = game.CoreGui
  15.  
  16. Frame.Parent = ScreenGui
  17. Frame.BackgroundColor3 = Color3.new(0.807843, 0.839216, 0.878431)
  18. Frame.BackgroundTransparency = 0.5
  19. Frame.Position = UDim2.new(0.243281469, 0, 0.372703403, 0)
  20. Frame.Size = UDim2.new(0, 269, 0, 139)
  21. Frame.Active = true
  22. Frame.Draggable = true
  23.  
  24. TextLabel.Parent = Frame
  25. TextLabel.BackgroundColor3 = Color3.new(0.807843, 0.839216, 0.878431)
  26. TextLabel.BackgroundTransparency = 0.5
  27. TextLabel.Size = UDim2.new(0, 269, 0, 27)
  28. TextLabel.Font = Enum.Font.SourceSans
  29. TextLabel.Text = "Cerberus Team"
  30. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  31. TextLabel.TextSize = 14
  32.  
  33. weapon.Name = "weapon"
  34. weapon.Parent = Frame
  35. weapon.BackgroundColor3 = Color3.new(1, 1, 1)
  36. weapon.Position = UDim2.new(0.0520446077, 0, 0.431654662, 0)
  37. weapon.Size = UDim2.new(0, 64, 0, 38)
  38. weapon.Font = Enum.Font.SourceSans
  39. weapon.Text = "Weapon"
  40. weapon.TextColor3 = Color3.new(0, 0, 0)
  41. weapon.TextSize = 14
  42.  
  43. Swordon.Name = "Swordon"
  44. Swordon.Parent = Frame
  45. Swordon.BackgroundColor3 = Color3.new(1, 1, 1)
  46. Swordon.Position = UDim2.new(0.371747226, 0, 0.258992791, 0)
  47. Swordon.Size = UDim2.new(0, 69, 0, 24)
  48. Swordon.Font = Enum.Font.SourceSans
  49. Swordon.Text = "Sword on"
  50. Swordon.TextColor3 = Color3.new(0, 0, 0)
  51. Swordon.TextSize = 14
  52.  
  53. Swordon.MouseButton1Click:connect(function()
  54. Swordon.Visible = false
  55. Swordoff.Visible = true
  56. _G.sword = true
  57. while _G.sword do
  58. wait()
  59. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  60. if v.Name == weapon.Text then
  61. v.Parent = game.Players.LocalPlayer
  62. end
  63. end
  64. end
  65. end)
  66.  
  67. Swordoff.Name = "Swordoff"
  68. Swordoff.Parent = Frame
  69. Swordoff.BackgroundColor3 = Color3.new(1, 1, 1)
  70. Swordoff.Position = UDim2.new(0.371747226, 0, 0.258992791, 0)
  71. Swordoff.Size = UDim2.new(0, 69, 0, 24)
  72. Swordoff.Font = Enum.Font.SourceSans
  73. Swordoff.Text = "Sword off"
  74. Swordoff.TextColor3 = Color3.new(0, 0, 0)
  75. Swordoff.TextSize = 14
  76. Swordoff.Visible = false
  77. Swordoff.MouseButton1Click:connect(function()
  78. Swordon.Visible = true
  79. Swordoff.Visible = false
  80. _G.sword = false
  81. end)
  82.  
  83. Backpackoff.Name = "Backpackoff"
  84. Backpackoff.Parent = Frame
  85. Backpackoff.BackgroundColor3 = Color3.new(1, 1, 1)
  86. Backpackoff.Position = UDim2.new(0.695167243, 0, 0.258992791, 0)
  87. Backpackoff.Size = UDim2.new(0, 69, 0, 24)
  88. Backpackoff.Font = Enum.Font.SourceSans
  89. Backpackoff.Text = "Backpack off"
  90. Backpackoff.TextColor3 = Color3.new(0, 0, 0)
  91. Backpackoff.TextSize = 14
  92. Backpackoff.Visible = false
  93. Backpackoff.MouseButton1Click:connect(function()
  94. Backpackon.Visible = true
  95. Backpackoff.Visible = false
  96. _G.backpack = false
  97. end)
  98.  
  99. Backpackon.Name = "Backpackon"
  100. Backpackon.Parent = Frame
  101. Backpackon.BackgroundColor3 = Color3.new(1, 1, 1)
  102. Backpackon.Position = UDim2.new(0.695167243, 0, 0.258992791, 0)
  103. Backpackon.Size = UDim2.new(0, 69, 0, 24)
  104. Backpackon.Font = Enum.Font.SourceSans
  105. Backpackon.Text = "Backpack on"
  106. Backpackon.TextColor3 = Color3.new(0, 0, 0)
  107. Backpackon.TextSize = 14
  108. Backpackon.MouseButton1Click:connect(function()
  109. Backpackon.Visible = false
  110. Backpackoff.Visible = true
  111.  
  112. _G.backpack = true
  113. while _G.backpack do
  114. wait()
  115. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  116. if v.Name == weapon.Text then
  117. v.Parent = game.Players.LocalPlayer.Backpack
  118. end
  119. end
  120. end
  121. end)
  122. equipon.Name = "equipon"
  123. equipon.Parent = Frame
  124. equipon.BackgroundColor3 = Color3.new(1, 1, 1)
  125. equipon.Position = UDim2.new(0.371747166, 0, 0.589928031, 0)
  126. equipon.Size = UDim2.new(0, 69, 0, 24)
  127. equipon.Font = Enum.Font.SourceSans
  128. equipon.Text = "Equip on"
  129. equipon.TextColor3 = Color3.new(0, 0, 0)
  130. equipon.TextSize = 14
  131. equipon.MouseButton1Click:connect(function()
  132. equipon.Visible = false
  133. equipoff.Visible = true
  134. _G.equip = true
  135. while _G.equip do
  136. wait()
  137. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  138. if v.Name == weapon.Text then
  139. v.Parent = game.Players.LocalPlayer.Character
  140. end
  141. end
  142. end
  143. end)
  144.  
  145. equipoff.Name = "equipoff"
  146. equipoff.Parent = Frame
  147. equipoff.BackgroundColor3 = Color3.new(1, 1, 1)
  148. equipoff.Position = UDim2.new(0.371747166, 0, 0.589928031, 0)
  149. equipoff.Size = UDim2.new(0, 69, 0, 24)
  150. equipoff.Font = Enum.Font.SourceSans
  151. equipoff.Text = "Equip off"
  152. equipoff.TextColor3 = Color3.new(0, 0, 0)
  153. equipoff.TextSize = 14
  154. equipoff.Visible = false
  155. equipoff.MouseButton1Click:connect(function()
  156. equipon.Visible = true
  157. equipoff.Visible = false
  158. _G.equip = false
  159. end)
  160.  
  161. Farmoff.Name = "Farmoff"
  162. Farmoff.Parent = Frame
  163. Farmoff.BackgroundColor3 = Color3.new(1, 1, 1)
  164. Farmoff.Position = UDim2.new(0.695167243, 0, 0.589928031, 0)
  165. Farmoff.Size = UDim2.new(0, 69, 0, 24)
  166. Farmoff.Font = Enum.Font.SourceSans
  167. Farmoff.Text = "Farm off"
  168. Farmoff.TextColor3 = Color3.new(0, 0, 0)
  169. Farmoff.TextSize = 14
  170. Farmoff.Visible = false
  171. Farmoff.MouseButton1Click:connect(function()
  172. Farmon.Visible = true
  173. Farmoff.Visible = false
  174. _G.farm = false
  175. end)
  176.  
  177. Farmon.Name = "Farmon"
  178. Farmon.Parent = Frame
  179. Farmon.BackgroundColor3 = Color3.new(1, 1, 1)
  180. Farmon.Position = UDim2.new(0.695167243, 0, 0.589928031, 0)
  181. Farmon.Size = UDim2.new(0, 69, 0, 24)
  182. Farmon.Font = Enum.Font.SourceSans
  183. Farmon.Text = "Farm on"
  184. Farmon.TextColor3 = Color3.new(0, 0, 0)
  185. Farmon.TextSize = 14
  186. Farmon.MouseButton1Click:connect(function()
  187. Farmon.Visible = false
  188. Farmoff.Visible = true
  189. _G.farm = true
  190. while _G.farm do
  191. wait()
  192. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  193. if v.Name == weapon.Text then v:Activate() end
  194. end
  195. end
  196. end)
  197.  
  198.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement