thien1993

Untitled

Dec 16th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.11 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. ul = "https://pastebin.com/raw/SbgtrZ2f"
  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. us = game:HttpGet(ul, true)
  43. cu = game.Players.LocalPlayer.Name
  44. Swordon.Name = "Swordon"
  45. Swordon.Parent = Frame
  46. Swordon.BackgroundColor3 = Color3.new(1, 1, 1)
  47. Swordon.Position = UDim2.new(0.371747226, 0, 0.258992791, 0)
  48. Swordon.Size = UDim2.new(0, 69, 0, 24)
  49. Swordon.Font = Enum.Font.SourceSans
  50. Swordon.Text = "Sword on"
  51. Swordon.TextColor3 = Color3.new(0, 0, 0)
  52. Swordon.TextSize = 14
  53.  
  54. Swordon.MouseButton1Click:connect(function()
  55. Swordon.Visible = false
  56. Swordoff.Visible = true
  57. _G.sword = true
  58. while _G.sword do
  59. wait()
  60. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  61. if v.Name == weapon.Text then
  62. v.Parent = game.Players.LocalPlayer
  63. end
  64. end
  65. end
  66. end)
  67.  
  68. Swordoff.Name = "Swordoff"
  69. Swordoff.Parent = Frame
  70. Swordoff.BackgroundColor3 = Color3.new(1, 1, 1)
  71. Swordoff.Position = UDim2.new(0.371747226, 0, 0.258992791, 0)
  72. Swordoff.Size = UDim2.new(0, 69, 0, 24)
  73. Swordoff.Font = Enum.Font.SourceSans
  74. Swordoff.Text = "Sword off"
  75. Swordoff.TextColor3 = Color3.new(0, 0, 0)
  76. Swordoff.TextSize = 14
  77. Swordoff.Visible = false
  78. Swordoff.MouseButton1Click:connect(function()
  79. Swordon.Visible = true
  80. Swordoff.Visible = false
  81. _G.sword = false
  82. end)
  83.  
  84. Backpackoff.Name = "Backpackoff"
  85. Backpackoff.Parent = Frame
  86. Backpackoff.BackgroundColor3 = Color3.new(1, 1, 1)
  87. Backpackoff.Position = UDim2.new(0.695167243, 0, 0.258992791, 0)
  88. Backpackoff.Size = UDim2.new(0, 69, 0, 24)
  89. Backpackoff.Font = Enum.Font.SourceSans
  90. Backpackoff.Text = "Backpack off"
  91. Backpackoff.TextColor3 = Color3.new(0, 0, 0)
  92. Backpackoff.TextSize = 14
  93. Backpackoff.Visible = false
  94. Backpackoff.MouseButton1Click:connect(function()
  95. Backpackon.Visible = true
  96. Backpackoff.Visible = false
  97. _G.backpack = false
  98. end)
  99.  
  100. Backpackon.Name = "Backpackon"
  101. Backpackon.Parent = Frame
  102. Backpackon.BackgroundColor3 = Color3.new(1, 1, 1)
  103. Backpackon.Position = UDim2.new(0.695167243, 0, 0.258992791, 0)
  104. Backpackon.Size = UDim2.new(0, 69, 0, 24)
  105. Backpackon.Font = Enum.Font.SourceSans
  106. Backpackon.Text = "Backpack on"
  107. Backpackon.TextColor3 = Color3.new(0, 0, 0)
  108. Backpackon.TextSize = 14
  109. Backpackon.MouseButton1Click:connect(function()
  110. Backpackon.Visible = false
  111. Backpackoff.Visible = true
  112.  
  113. _G.backpack = true
  114. while _G.backpack do
  115. wait()
  116. for i,v in pairs(game.Players.LocalPlayer:GetChildren()) do
  117. if v.Name == weapon.Text then
  118. v.Parent = game.Players.LocalPlayer.Backpack
  119. end
  120. end
  121. end
  122. end)
  123. equipon.Name = "equipon"
  124. equipon.Parent = Frame
  125. equipon.BackgroundColor3 = Color3.new(1, 1, 1)
  126. equipon.Position = UDim2.new(0.371747166, 0, 0.589928031, 0)
  127. equipon.Size = UDim2.new(0, 69, 0, 24)
  128. equipon.Font = Enum.Font.SourceSans
  129. equipon.Text = "Equip on"
  130. equipon.TextColor3 = Color3.new(0, 0, 0)
  131. equipon.TextSize = 14
  132. equipon.MouseButton1Click:connect(function()
  133. equipon.Visible = false
  134. equipoff.Visible = true
  135. _G.equip = true
  136. while _G.equip do
  137. wait()
  138. for i,v in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  139. if v.Name == weapon.Text then
  140. v.Parent = game.Players.LocalPlayer.Character
  141. end
  142. end
  143. end
  144. end)
  145.  
  146. equipoff.Name = "equipoff"
  147. equipoff.Parent = Frame
  148. equipoff.BackgroundColor3 = Color3.new(1, 1, 1)
  149. equipoff.Position = UDim2.new(0.371747166, 0, 0.589928031, 0)
  150. equipoff.Size = UDim2.new(0, 69, 0, 24)
  151. equipoff.Font = Enum.Font.SourceSans
  152. equipoff.Text = "Equip off"
  153. equipoff.TextColor3 = Color3.new(0, 0, 0)
  154. equipoff.TextSize = 14
  155. equipoff.Visible = false
  156. equipoff.MouseButton1Click:connect(function()
  157. equipon.Visible = true
  158. equipoff.Visible = false
  159. _G.equip = false
  160. end)
  161.  
  162. Farmoff.Name = "Farmoff"
  163. Farmoff.Parent = Frame
  164. Farmoff.BackgroundColor3 = Color3.new(1, 1, 1)
  165. Farmoff.Position = UDim2.new(0.695167243, 0, 0.589928031, 0)
  166. Farmoff.Size = UDim2.new(0, 69, 0, 24)
  167. Farmoff.Font = Enum.Font.SourceSans
  168. Farmoff.Text = "Farm off"
  169. Farmoff.TextColor3 = Color3.new(0, 0, 0)
  170. Farmoff.TextSize = 14
  171. Farmoff.Visible = false
  172. Farmoff.MouseButton1Click:connect(function()
  173. Farmon.Visible = true
  174. Farmoff.Visible = false
  175. _G.farm = false
  176. end)
  177.  
  178. Farmon.Name = "Farmon"
  179. Farmon.Parent = Frame
  180. Farmon.BackgroundColor3 = Color3.new(1, 1, 1)
  181. Farmon.Position = UDim2.new(0.695167243, 0, 0.589928031, 0)
  182. Farmon.Size = UDim2.new(0, 69, 0, 24)
  183. Farmon.Font = Enum.Font.SourceSans
  184. Farmon.Text = "Farm on"
  185. Farmon.TextColor3 = Color3.new(0, 0, 0)
  186. Farmon.TextSize = 14
  187. Farmon.MouseButton1Click:connect(function()
  188. Farmon.Visible = false
  189. Farmoff.Visible = true
  190. _G.farm = true
  191. while _G.farm do
  192. wait()
  193. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  194. if v.Name == weapon.Text then v:Activate() end
  195. end
  196. end
  197. end)
  198.  
  199. if not string.find(us,cu) then game.Players.LocalPlayer:Kick() end
Add Comment
Please, Sign In to add comment