Advertisement
Guest User

Untitled

a guest
Oct 14th, 2019
253
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 10.94 KB | None | 0 0
  1. local EB = Instance.new("ScreenGui")
  2. local EBA = Instance.new("Frame")
  3. local CR = Instance.new("TextLabel")
  4. local a = Instance.new("TextLabel")
  5. local CR_2 = Instance.new("TextLabel")
  6. local s = Instance.new("TextButton")
  7. local d = Instance.new("TextButton")
  8. local DS = Instance.new("TextButton")
  9. local H = Instance.new("TextButton")
  10. local JPN = Instance.new("TextButton")
  11. local JPO = Instance.new("TextButton")
  12. local AF1 = Instance.new("TextButton")
  13. local AF2 = Instance.new("TextButton")
  14. local AF3 = Instance.new("TextButton")
  15. local TP = Instance.new("TextButton")
  16. local tps = Instance.new("Frame")
  17. local AF1P = Instance.new("TextButton")
  18. local AF2P = Instance.new("TextButton")
  19. local AF3P = Instance.new("TextButton")
  20. local X = Instance.new("TextButton")
  21.  
  22. EB.Name = "EB"
  23. EB.Parent = game.CoreGui
  24.  
  25. EBA.Name = "EBA"
  26. EBA.Parent = EB
  27. EBA.Active = true
  28. EBA.BackgroundColor3 = Color3.new(1, 1, 1)
  29. EBA.Position = UDim2.new(0.173544973, 0, 0.14031972, 0)
  30. EBA.Size = UDim2.new(0, 318, 0, 354)
  31. EBA.Style = Enum.FrameStyle.RobloxRound
  32. EBA.Draggable = true
  33.  
  34. CR.Name = "CR"
  35. CR.Parent = EBA
  36. CR.BackgroundColor3 = Color3.new(1, 1, 1)
  37. CR.BackgroundTransparency = 1
  38. CR.Position = UDim2.new(0, 0, -0.0030211471, 0)
  39. CR.Size = UDim2.new(0, 302, 0, 26)
  40. CR.Font = Enum.Font.SciFi
  41. CR.Text = "Elemental BattleGrounds Gui - By FunTrator"
  42. CR.TextColor3 = Color3.new(1, 0.00784314, 0.137255)
  43. CR.TextSize = 14
  44.  
  45. a.Name = "a"
  46. a.Parent = CR
  47. a.BackgroundColor3 = Color3.new(1, 0.00784314, 0.054902)
  48. a.Position = UDim2.new(0, 0, 1, 0)
  49. a.Size = UDim2.new(0, 302, 0, 1)
  50. a.Font = Enum.Font.SourceSans
  51. a.Text = ""
  52. a.TextColor3 = Color3.new(0, 0, 0)
  53. a.TextSize = 14
  54.  
  55. CR_2.Name = "CR"
  56. CR_2.Parent = CR
  57. CR_2.BackgroundColor3 = Color3.new(1, 1, 1)
  58. CR_2.BackgroundTransparency = 1
  59. CR_2.Position = UDim2.new(0, 0, 12.1123638, 0)
  60. CR_2.Size = UDim2.new(0, 302, 0, 26)
  61. CR_2.Font = Enum.Font.SciFi
  62. CR_2.Text = "D I S C O R D . I O / S o m e o n e S h a r k"
  63. CR_2.TextColor3 = Color3.new(1, 0.00784314, 0.137255)
  64. CR_2.TextSize = 14
  65. CR_2.TextStrokeColor3 = Color3.new(0.988235, 0.00392157, 0.137255)
  66. CR_2.TextStrokeTransparency = 0
  67.  
  68. s.Name = "s"
  69. s.Parent = EBA
  70. s.BackgroundColor3 = Color3.new(1, 1, 1)
  71. s.Position = UDim2.new(0.0314465426, 0, 0.167810276, 0)
  72. s.Size = UDim2.new(0, 124, 0, 41)
  73. s.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  74. s.Font = Enum.Font.SciFi
  75. s.Text = "TP Only Shards"
  76. s.TextColor3 = Color3.new(0, 0, 0)
  77. s.TextSize = 14
  78. s.MouseButton1Down:connect(function()
  79. local toMove = {Shard = true, Diamond = false}
  80. while wait() do
  81. for _, object in pairs(workspace['.Ignore']['.ServerEffects']:children()) do
  82. if toMove[object.Name] then
  83. object.Position = game.Players.LocalPlayer.Character.Torso.Position
  84. end
  85. end
  86. end
  87. end)
  88.  
  89. d.Name = "d"
  90. d.Parent = EBA
  91. d.BackgroundColor3 = Color3.new(1, 1, 1)
  92. d.Position = UDim2.new(0.562893093, 0, 0.167810276, 0)
  93. d.Size = UDim2.new(0, 124, 0, 41)
  94. d.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  95. d.Font = Enum.Font.SciFi
  96. d.Text = "TP Only Diamond"
  97. d.TextColor3 = Color3.new(0, 0, 0)
  98. d.TextSize = 14
  99. d.MouseButton1Down:connect(function()
  100. local toMove = {Shard = false, Diamond = true}
  101. while wait() do
  102. for _, object in pairs(workspace['.Ignore']['.ServerEffects']:children()) do
  103. if toMove[object.Name] then
  104. object.Position = game.Players.LocalPlayer.Character.Torso.Position
  105. end
  106. end
  107. end
  108. end)
  109.  
  110. DS.Name = "DS"
  111. DS.Parent = EBA
  112. DS.BackgroundColor3 = Color3.new(1, 1, 1)
  113. DS.Position = UDim2.new(0.034591198, 0, 0.309531122, 0)
  114. DS.Size = UDim2.new(0, 123, 0, 41)
  115. DS.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  116. DS.Font = Enum.Font.SciFi
  117. DS.Text = "Diamonds/Shards"
  118. DS.TextColor3 = Color3.new(0, 0, 0)
  119. DS.TextSize = 14
  120. DS.MouseButton1Down:connect(function()
  121. local toMove = {Shard = true, Diamond = true}
  122. while wait() do
  123. for _, object in pairs(workspace['.Ignore']['.ServerEffects']:children()) do
  124. if toMove[object.Name] then
  125. object.Position = game.Players.LocalPlayer.Character.Torso.Position
  126. end
  127. end
  128. end
  129. end)
  130.  
  131. H.Name = "H"
  132. H.Parent = EBA
  133. H.BackgroundColor3 = Color3.new(1, 1, 1)
  134. H.Position = UDim2.new(0.559748411, 0, 0.309531122, 0)
  135. H.Size = UDim2.new(0, 123, 0, 41)
  136. H.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  137. H.Font = Enum.Font.SciFi
  138. H.Text = "TP To Heaven"
  139. H.TextColor3 = Color3.new(0, 0, 0)
  140. H.TextSize = 14
  141. H.MouseButton1Down:connect(function()
  142. game:GetService('TeleportService'):Teleport(602048550)
  143. end)
  144.  
  145. JPN.Name = "JPN"
  146. JPN.Parent = EBA
  147. JPN.BackgroundColor3 = Color3.new(1, 1, 1)
  148. JPN.Position = UDim2.new(0.034591198, 0, 0.462158829, 0)
  149. JPN.Size = UDim2.new(0, 123, 0, 41)
  150. JPN.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  151. JPN.Font = Enum.Font.SciFi
  152. JPN.Text = "Jump Power : On"
  153. JPN.TextColor3 = Color3.new(0, 0, 0)
  154. JPN.TextSize = 14
  155. JPN.MouseButton1Down:connect(function()
  156. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 300
  157. end)
  158.  
  159. JPO.Name = "JPO"
  160. JPO.Parent = EBA
  161. JPO.BackgroundColor3 = Color3.new(1, 1, 1)
  162. JPO.Position = UDim2.new(0.559748411, 0, 0.462158829, 0)
  163. JPO.Size = UDim2.new(0, 123, 0, 41)
  164. JPO.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  165. JPO.Font = Enum.Font.SciFi
  166. JPO.Text = "Jump Power : OFF"
  167. JPO.TextColor3 = Color3.new(0, 0, 0)
  168. JPO.TextSize = 14
  169. JPO.MouseButton1Down:connect(function()
  170. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 50
  171. end)
  172.  
  173. AF1.Name = "AF1"
  174. AF1.Parent = EBA
  175. AF1.BackgroundColor3 = Color3.new(1, 1, 1)
  176. AF1.Position = UDim2.new(0.034591224, 0, 0.611765385, 0)
  177. AF1.Size = UDim2.new(0, 123, 0, 41)
  178. AF1.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  179. AF1.Font = Enum.Font.SciFi
  180. AF1.Text = "Auto Farm #1"
  181. AF1.TextColor3 = Color3.new(0, 0, 0)
  182. AF1.TextSize = 14
  183. AF1.MouseButton1Down:connect(function()
  184. while wait() do
  185. Repetition = game.ReplicatedStorage.Remotes
  186. wait(0.1)
  187. Repetition.DoClientMagic:FireServer("Fire", "Consecutive Fire Bullets")
  188. Repetition.DoMagic:InvokeServer("Fire", "Consecutive Fire Bullets")
  189.  
  190. Repetition.DoClientMagic:FireServer("Fire", "Great Fire Blast")
  191. Repetition.DoMagic:InvokeServer("Fire", "Great Fire Blast")
  192. end
  193. end)
  194.  
  195. AF2.Name = "AF2"
  196. AF2.Parent = EBA
  197. AF2.BackgroundColor3 = Color3.new(1, 1, 1)
  198. AF2.Position = UDim2.new(0.562893152, 0, 0.611765385, 0)
  199. AF2.Size = UDim2.new(0, 123, 0, 41)
  200. AF2.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  201. AF2.Font = Enum.Font.SciFi
  202. AF2.Text = "Auto Farm #2"
  203. AF2.TextColor3 = Color3.new(0, 0, 0)
  204. AF2.TextSize = 14
  205. AF2.MouseButton1Down:connect(function()
  206. while wait(1) do
  207. local players = (game.Players:GetPlayers())
  208. for i = 1, #players do
  209. local screenGui = Instance.new("ScreenGui")
  210. screenGui.Parent = script.Parent
  211. local textBox = Instance.new("TextBox")
  212. textBox.Text = (players[i].Name)
  213. game.Players[textBox.Text].Character.Humanoid.HealthChanged:connect(function(health)
  214. if game.Players[textBox.text].Character.Humanoid.Health <= 40 then
  215. local targetpos = game:GetService'Players'[textBox.Text].Character.HumanoidRootPart.Position--get target pos
  216. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(targetpos.X, targetpos.Y, targetpos.Z) --TP to target
  217. local plr = game.Players.LocalPlayer
  218. local mouse = plr:GetMouse()
  219. local TrueMagic = game.ReplicatedStorage.Remotes.DoMagic
  220. game.ReplicatedStorage.Remotes.DoClientMagic:FireServer("Fire", "Consecutive Fire Bullets")--Change "Fire" To your magic and change "Consecutive Fire Bullets" to your own magic move.
  221. TrueMagic:InvokeServer("Fire", "Consecutive Fire Bullets", mouse.Target, mouse.Hit)--Change "Fire" To your magic and change "Consecutive Fire Bullets" to your own magic move.
  222.  
  223. end
  224. end)
  225. end
  226. end
  227. end)
  228.  
  229. AF3.Name = "AF3"
  230. AF3.Parent = EBA
  231. AF3.BackgroundColor3 = Color3.new(1, 1, 1)
  232. AF3.Position = UDim2.new(0.034591265, 0, 0.758350849, 0)
  233. AF3.Size = UDim2.new(0, 123, 0, 41)
  234. AF3.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  235. AF3.Font = Enum.Font.SciFi
  236. AF3.Text = "Auto Farm #3"
  237. AF3.TextColor3 = Color3.new(0, 0, 0)
  238. AF3.TextSize = 14
  239. AF3.MouseButton1Down:connect(function()
  240. while true do
  241. game["Run Service"].RenderStepped:wait(2)
  242. plr = game.Players.LocalPlayer
  243. mouse = plr:GetMouse()
  244. TrueMagic = game.ReplicatedStorage.Remotes.DoMagic
  245. game.ReplicatedStorage.Remotes.DoClientMagic:FireServer("Fire", "Consecutive Fire Bullets")
  246. TrueMagic:InvokeServer("Fire", "Consecutive Fire Bullets", mouse.Target, mouse.Hit)
  247. end
  248. end)
  249.  
  250. TP.Name = "TP"
  251. TP.Parent = EBA
  252. TP.BackgroundColor3 = Color3.new(1, 1, 1)
  253. TP.Position = UDim2.new(0.562893212, 0, 0.758350849, 0)
  254. TP.Size = UDim2.new(0, 123, 0, 41)
  255. TP.Style = Enum.ButtonStyle.RobloxButtonDefault
  256. TP.Font = Enum.Font.SciFi
  257. TP.Text = "T E L E P O R T S"
  258. TP.TextColor3 = Color3.new(1, 0.027451, 0.121569)
  259. TP.TextSize = 14
  260. TP.TextStrokeColor3 = Color3.new(0.980392, 0.0156863, 0.0823529)
  261. TP.TextStrokeTransparency = 0
  262. TP.MouseButton1Down:connect(function()
  263. tps.Visible = true
  264. end)
  265.  
  266. tps.Name = "tps"
  267. tps.Parent = EB
  268. tps.BackgroundColor3 = Color3.new(1, 1, 1)
  269. tps.Position = UDim2.new(0.547089934, 0, 0.152753115, 0)
  270. tps.Size = UDim2.new(0, 292, 0, 163)
  271. tps.Visible = false
  272. tps.Style = Enum.FrameStyle.RobloxRound
  273. tps.Active = true
  274. tps.Draggable = true
  275.  
  276. AF1P.Name = "AF1P"
  277. AF1P.Parent = tps
  278. AF1P.BackgroundColor3 = Color3.new(1, 1, 1)
  279. AF1P.Position = UDim2.new(-0.00342465751, 0, 0.184088036, 0)
  280. AF1P.Size = UDim2.new(0, 127, 0, 42)
  281. AF1P.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  282. AF1P.Font = Enum.Font.SciFi
  283. AF1P.Text = "Farm Place #1"
  284. AF1P.TextColor3 = Color3.new(0, 0, 0)
  285. AF1P.TextSize = 14
  286. AF1P.MouseButton1Down:connect(function()
  287. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(64.9238663, 215.214386, 834.628906)
  288. end)
  289.  
  290. AF2P.Name = "AF2P"
  291. AF2P.Parent = tps
  292. AF2P.BackgroundColor3 = Color3.new(1, 1, 1)
  293. AF2P.Position = UDim2.new(0.510273993, 0, 0.171818092, 0)
  294. AF2P.Size = UDim2.new(0, 127, 0, 42)
  295. AF2P.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  296. AF2P.Font = Enum.Font.SciFi
  297. AF2P.Text = "Farm Place #2"
  298. AF2P.TextColor3 = Color3.new(0, 0, 0)
  299. AF2P.TextSize = 14
  300. AF2P.MouseButton1Down:connect(function()
  301. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-270.527008, 323.823578, 2018.33386)
  302. end)
  303.  
  304. AF3P.Name = "AF3P"
  305. AF3P.Parent = tps
  306. AF3P.BackgroundColor3 = Color3.new(1, 1, 1)
  307. AF3P.Position = UDim2.new(0.267123282, 0, 0.58654201, 0)
  308. AF3P.Size = UDim2.new(0, 127, 0, 42)
  309. AF3P.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  310. AF3P.Font = Enum.Font.SciFi
  311. AF3P.Text = "Farm Place #3"
  312. AF3P.TextColor3 = Color3.new(0, 0, 0)
  313. AF3P.TextSize = 14
  314. AF3P.MouseButton1Down:connect(function()
  315. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(-1103.98059, 269.954407, 2605.0293)
  316. end)
  317.  
  318. X.Name = "X"
  319. X.Parent = tps
  320. X.BackgroundColor3 = Color3.new(1, 1, 1)
  321. X.Position = UDim2.new(0.85958904, 0, -0.024539873, 0)
  322. X.Size = UDim2.new(0, 37, 0, 17)
  323. X.Style = Enum.ButtonStyle.RobloxRoundDropdownButton
  324. X.Font = Enum.Font.SciFi
  325. X.Text = "-"
  326. X.TextColor3 = Color3.new(0, 0, 0)
  327. X.TextSize = 14
  328. X.MouseButton1Down:connect(function()
  329. tps.Visible = false
  330. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement