Advertisement
MRobbin99

JoJo Menacing GUI

Mar 2nd, 2019
2,694
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 6.97 KB | None | 0 0
  1. --gamelink: https://www.roblox.com/games/2578682963/JoJos-Menacing-Adventures#
  2.  
  3.  
  4. -- Objects
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local GUI = Instance.new("Frame")
  8. local Title = Instance.new("TextLabel")
  9. local KillAllWarriors= Instance.new("TextButton")
  10. local KillAllLizard = Instance.new("TextButton")
  11. local KillAllSkeleton = Instance.new("TextButton")
  12. local KillDesertBoss = Instance.new("TextButton")
  13. local Credits = Instance.new("TextLabel")
  14. local KillKoblox= Instance.new("TextButton")
  15. local KillTerrainSpecialist= Instance.new("TextButton")
  16. local KillSunstar= Instance.new("TextButton")
  17. local KillMagmaFiend= Instance.new("TextButton")
  18. local Button1 = Instance.new("TextButton")
  19. local Button2 = Instance.new("TextButton")
  20. local Button3 = Instance.new("TextButton")
  21. local Button4 = Instance.new("TextButton")
  22. local Button5 = Instance.new("TextButton")
  23. local Button6 = Instance.new("TextButton")
  24. local Button7 = Instance.new("TextButton")
  25. local Button8 = Instance.new("TextButton")
  26. -- Properties
  27.  
  28. modifier = false
  29. xp = false
  30. money = false
  31. killallplayers = false
  32.  
  33. ScreenGui.Parent = game.CoreGui
  34.  
  35. GUI.Name = "GUI"
  36. GUI.Parent = ScreenGui
  37. GUI.BackgroundColor3 = Color3.new(0.0784314, 0.0784314, 0.0784314)
  38. GUI.BorderColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  39. GUI.BorderSizePixel = 0
  40. GUI.Position = UDim2.new(0, 0, 0.730039531, 0)
  41. GUI.Size = UDim2.new(0, 316, 0, 339)
  42. GUI.Style = Enum.FrameStyle.RobloxRound
  43.  
  44. Title.Name = "Title"
  45. Title.Parent = GUI
  46. Title.Active = true
  47. Title.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  48. Title.Position = UDim2.new(0.114720426, 0, 0.00523944944, 0)
  49. Title.Size = UDim2.new(0, 200, 0, 50)
  50. Title.Font = Enum.Font.SourceSans
  51. Title.Text = "JoJo's Menacing GUI mrobbin99"
  52. Title.TextColor3 = Color3.new(1, 1, 1)
  53. Title.TextSize = 14
  54.  
  55. KillAllWarriors.Name = "KillAllWarriors"
  56. KillAllWarriors.Parent = GUI
  57. KillAllWarriors.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  58. KillAllWarriors.Position = UDim2.new(0.0284810141, 0, 0.133038366, 0)
  59. KillAllWarriors.Size = UDim2.new(0, 114, 0, 26)
  60. KillAllWarriors.Font = Enum.Font.SourceSans
  61. KillAllWarriors.Text = "Get Arrow"
  62. KillAllWarriors.TextColor3 = Color3.new(1, 1, 1)
  63. KillAllWarriors.TextSize = 14
  64. KillAllWarriors.MouseButton1Down:connect(function()
  65.  
  66.  
  67. local A_1 = "StandArrow"
  68. local A_2 = 5000
  69. local Event = game:GetService("ReplicatedStorage").Specials.ShopBuy
  70. Event:FireServer(A_1, A_2)
  71.  
  72. end)
  73.  
  74.  
  75. KillAllLizard.Name = "KillAllLizard"
  76. KillAllLizard.Parent = GUI
  77. KillAllLizard.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  78. KillAllLizard.Position = UDim2.new(0.525316477, 0, 0.133038366, 0)
  79. KillAllLizard.Size = UDim2.new(0, 114, 0, 26)
  80. KillAllLizard.Font = Enum.Font.SourceSans
  81. KillAllLizard.Text = "Farm Money"
  82. KillAllLizard.TextColor3 = Color3.new(1, 1, 1)
  83. KillAllLizard.TextSize = 14
  84. KillAllLizard.MouseButton1Down:connect(function()
  85. if modifier == true then
  86. modifier = false
  87. KillAllLizard.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  88. else
  89. modifier = true
  90. KillAllLizard.BackgroundColor3 = Color3.new(40, 127, 71)
  91. kill(1)
  92. end
  93. end)
  94.  
  95.  
  96. KillAllSkeleton.Name = "KillAllSkeleton"
  97. KillAllSkeleton.Parent = GUI
  98. KillAllSkeleton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  99. KillAllSkeleton.Position = UDim2.new(0.03164557, 0, 0.233038366, 0)
  100. KillAllSkeleton.Size = UDim2.new(0, 114, 0, 26)
  101. KillAllSkeleton.Font = Enum.Font.SourceSans
  102. KillAllSkeleton.Text = "Farm XP"
  103. KillAllSkeleton.TextColor3 = Color3.new(1, 1, 1)
  104. KillAllSkeleton.TextSize = 14
  105. KillAllSkeleton.MouseButton1Down:connect(function()
  106. if modifier == true then
  107. modifier = false
  108. KillAllSkeleton.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  109. else
  110. modifier = true
  111. KillAllSkeleton.BackgroundColor3 = Color3.new(40, 127, 71)
  112. kill(2)
  113. end
  114. end)
  115.  
  116.  
  117. KillDesertBoss.Name = "Kill DesertBoss"
  118. KillDesertBoss.Parent = GUI
  119. KillDesertBoss.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  120. KillDesertBoss.Position = UDim2.new(0.525316477, 0, 0.233038366, 0)
  121. KillDesertBoss.Size = UDim2.new(0, 114, 0, 26)
  122. KillDesertBoss.Font = Enum.Font.SourceSans
  123. KillDesertBoss.Text = "Spam Kill All Players"
  124. KillDesertBoss.TextColor3 = Color3.new(1, 1, 1)
  125. KillDesertBoss.TextSize = 14
  126. KillDesertBoss.MouseButton1Down:connect(function()
  127. if modifier == true then
  128. modifier = false
  129. KillDesertBoss.BackgroundColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  130. else
  131. modifier = true
  132. KillDesertBoss.BackgroundColor3 = Color3.new(40, 127, 71)
  133. kill(3)
  134. end
  135. end)
  136.  
  137.  
  138. Credits.Name = "Credits"
  139. Credits.Parent = GUI
  140. Credits.BackgroundColor3 = Color3.new(1, 1, 1)
  141. Credits.Position = UDim2.new(0.00316455704, 0, 0.943952799, 0)
  142. Credits.Size = UDim2.new(0, 109, 0, 18)
  143. Credits.Font = Enum.Font.SourceSans
  144. Credits.Text = "Credits to MRobbin99"
  145. Credits.TextSize = 14
  146.  
  147.  
  148. -- Kill
  149. function kill(p)
  150. while modifier do
  151. wait()
  152.  
  153. if p == 1 then
  154. player = game.Players.LocalPlayer
  155. list = game.Workspace.Folder:GetChildren()
  156. for i = 1, #list do
  157. if list[i]:FindFirstChild("isdodge") ~= nil then
  158. if list[i].Humanoid.Health > 10 then
  159. if game.Players.LocalPlayer.Character:FindFirstChild("Torso") ~= nil then
  160. player.Character.HumanoidRootPart.CFrame = list[i].Torso.CFrame
  161. wait()
  162. local A_1 = game.Workspace:FindFirstChild("Part")
  163. local A_2 = 9999999999999999
  164. local A_3 = game.Players.LocalPlayer.Character.Torso.voiceline
  165. local A_4 = list[i].Humanoid
  166. local A_6 = false
  167. local A_7 = false
  168. local Event = game:GetService("ReplicatedStorage").Specials.explosionevent
  169. Event:FireServer(A_1, A_2, A_3, A_4, A_6, A_7)
  170. end
  171. end
  172. end
  173. end
  174. end
  175.  
  176. if p == 2 then
  177. player = game.Players.LocalPlayer
  178. list = game.Workspace.Folder:GetChildren()
  179. for i = 1, #list do
  180. if list[i]:FindFirstChild("isdodge") ~= nil then
  181. if list[i].Humanoid.Health > 10 then
  182. if game.Players.LocalPlayer.Character:FindFirstChild("Torso") ~= nil then
  183. wait()
  184. local A_1 = game.Workspace:FindFirstChild("Part")
  185. local A_2 = 90000000
  186. local A_3 = game.Players.LocalPlayer.Character.Torso.voiceline
  187. local A_4 = list[i].Humanoid
  188. local A_6 = false
  189. local A_7 = false
  190. local Event = game:GetService("ReplicatedStorage").Specials.explosionevent
  191. Event:FireServer(A_1, A_2, A_3, A_4, A_6, A_7)
  192. end
  193. end
  194. end
  195. end
  196. end
  197.  
  198. if p == 3 then
  199. players = game.Players:GetChildren()
  200. for i = 1, #players do
  201. playername = players[i].Name
  202. if game.Workspace:FindFirstChild(playername) ~= nil and playername ~= game.Players.LocalPlayer.Name then
  203. player = game.Workspace:FindFirstChild(playername)
  204. if player.Humanoid.Health > 10 then
  205. if player:FindFirstChild("ForceField") == nil then
  206. if game.Players.LocalPlayer.Character:FindFirstChild("Torso") ~= nil then
  207. wait(.5)
  208. local A_1 = game.Workspace:FindFirstChild("Part")
  209. local A_2 = "inf"
  210. local A_3 = game.Players.LocalPlayer.Character.Torso.voiceline
  211. local A_4 = player.Humanoid
  212. local A_6 = false
  213. local A_7 = false
  214. local Event = game:GetService("ReplicatedStorage").Specials.explosionevent
  215. Event:FireServer(A_1, A_2, A_3, A_4, A_6, A_7)
  216. end
  217. end
  218. end
  219. end
  220. end
  221. end
  222. end
  223. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement