Advertisement
Guest User

Swordburst Online shit

a guest
Sep 8th, 2016
3,795
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 9.17 KB | None | 0 0
  1. local GuiService = Instance.new("ScreenGui")
  2. local Menu = Instance.new("TextButton")
  3. local Chat = Instance.new("Frame")
  4. local MenuBG = Instance.new("ImageLabel")
  5. local Close = Instance.new("TextButton")
  6. local MlDmg = Instance.new("TextButton")
  7. local T1 = Instance.new("TextBox")
  8. local GodMode = Instance.new("TextButton")
  9. local KillSht = Instance.new("TextButton")
  10. local SSkill = Instance.new("TextButton")
  11. local TSSkill = Instance.new("TextButton")
  12. local T2 = Instance.new("TextBox")
  13. local MobKill = Instance.new("TextButton")
  14. local T3 = Instance.new("TextBox")
  15. local SAnim = Instance.new("TextButton")
  16.  
  17. GuiService.Name = "Gui Service"
  18. GuiService.Parent = game.Players.LocalPlayer.PlayerGui -- You could use game.CoreGui here
  19.  
  20. Menu.Name = "Menu"
  21. Menu.Parent = GuiService
  22. Menu.BackgroundColor3 = Color3.new(0, 0.188235, 0.27451)
  23. Menu.BackgroundTransparency = 0.5
  24. Menu.BorderSizePixel = 0
  25. Menu.Position = UDim2.new(0, 323, 0, 0)
  26. Menu.Size = UDim2.new(0, 60, 0, 20)
  27. Menu.Font = Enum.Font.SourceSansLight
  28. Menu.FontSize = Enum.FontSize.Size18
  29. Menu.Text = "Menu"
  30. Menu.TextColor3 = Color3.new(1, 1, 1)
  31. Open = false
  32.  
  33. Chat.Name = "Chat"
  34. Chat.Parent = GuiService
  35. Chat.Active = true
  36. Chat.BackgroundColor3 = Color3.new(1, 1, 1)
  37. Chat.BackgroundTransparency = 1
  38. Chat.Draggable = true
  39. Chat.Position = UDim2.new(0.28, 000, 0.55, 1000)
  40. Chat.Selectable = true
  41. Chat.Size = UDim2.new(0, 537, 0, 56)
  42. Chat.Visible = false
  43.  
  44. MenuBG.Name = "MenuBG"
  45. MenuBG.Parent = Chat
  46. MenuBG.BackgroundColor3 = Color3.new(1, 1, 1)
  47. MenuBG.BackgroundTransparency = 1
  48. MenuBG.Size = UDim2.new(0, 593, 0, 361)
  49. MenuBG.Image = "rbxassetid://498323180"
  50. MenuBG.ImageTransparency = 0.10000000149012
  51.  
  52. Close.Name = "Close"
  53. Close.Parent = Chat
  54. Close.BackgroundColor3 = Color3.new(1, 1, 1)
  55. Close.BackgroundTransparency = 1
  56. Close.Position = UDim2.new(0, 537, 0, 28)
  57. Close.Size = UDim2.new(0, 40, 0, 28)
  58. Close.Font = Enum.Font.SourceSans
  59. Close.FontSize = Enum.FontSize.Size14
  60. Close.TextTransparency = 1
  61. Close.MouseButton1Down:connect(function(open)
  62. Chat:TweenPosition(UDim2.new(0.28, 0, 1.0, 1000), "In", "Sine",1,true)
  63. Open = false
  64. end)
  65.  
  66. Menu.MouseButton1Down:connect(function(open)
  67. if Open == false then
  68. Chat.Visible = true
  69. Chat:TweenPosition(UDim2.new(0.28, 0, 0.55, -250), "Out", "Back",1.5,true)
  70. Open = true
  71. elseif Open == true then
  72. Chat:TweenPosition(UDim2.new(0.28, 0, 1.0, 1000), "In", "Sine",1,true)
  73. Open = false
  74. end
  75. end)
  76.  
  77. MlDmg.Name = "Multiply Damage"
  78. MlDmg.Parent = Chat
  79. MlDmg.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  80. MlDmg.BackgroundTransparency = 0.60000002384186
  81. MlDmg.BorderSizePixel = 0
  82. MlDmg.Position = UDim2.new(0, 180, 0, 75)
  83. MlDmg.Size = UDim2.new(0, 70, 0, 53)
  84. MlDmg.Font = Enum.Font.SourceSansLight
  85. MlDmg.FontSize = Enum.FontSize.Size18
  86. MlDmg.Text = "Damage *"
  87. MlDmg.TextColor3 = Color3.new(1, 1, 1)
  88. MlDmg.TextStrokeColor3 = Color3.new(1, 1, 1)
  89.  
  90. GodMode.Name = "God"
  91. GodMode.Parent = Chat
  92. GodMode.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  93. GodMode.BackgroundTransparency = 0.60000002384186
  94. GodMode.BorderSizePixel = 0
  95. GodMode.Position = UDim2.new(0, 20, 0, 75)
  96. GodMode.Size = UDim2.new(0, 70, 0, 70)
  97. GodMode.Font = Enum.Font.SourceSansLight
  98. GodMode.FontSize = Enum.FontSize.Size12
  99. GodMode.Text = "God"
  100. GodMode.TextColor3 = Color3.new(1, 1, 1)
  101. GodMode.TextStrokeColor3 = Color3.new(1, 1, 1)
  102. GodMode.MouseButton1Down:connect(function(open)
  103. local name383 = game.Players.LocalPlayer.Name
  104. game.Players.LocalPlayer.Character.Health:Destroy()
  105. game.ReplicatedStorage.Profiles[name383].Health:Destroy()
  106. end)
  107.  
  108. KillSht.Name = "Kill Mobs"
  109. KillSht.Parent = Chat
  110. KillSht.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  111. KillSht.BackgroundTransparency = 0.60000002384186
  112. KillSht.BorderSizePixel = 0
  113. KillSht.Position = UDim2.new(0, 100, 0, 75)
  114. KillSht.Size = UDim2.new(0, 70, 0, 70)
  115. KillSht.Font = Enum.Font.SourceSansLight
  116. KillSht.FontSize = Enum.FontSize.Size14
  117. KillSht.Text = "Kill Mobs"
  118. KillSht.TextColor3 = Color3.new(1, 1, 1)
  119. KillSht.TextStrokeColor3 = Color3.new(1, 1, 1)
  120. KillSht.MouseButton1Down:connect(function(open)
  121. while true do
  122. wait(1.5)
  123. for i, v in pairs(workspace.Mobs:children()) do
  124. local l223 = v:GetModelCFrame().p
  125. game.Players.LocalPlayer.Character:MoveTo(l223)
  126. for i = 1, 50 do
  127. spawn(function()
  128. game.ReplicatedStorage.CombatHandler:InvokeServer(v)
  129. wait(.5)
  130. game.ReplicatedStorage.CombatHandler:InvokeServer(v)
  131. end)
  132. game.ReplicatedStorage.CombatHandler:InvokeServer(v)
  133. end
  134. wait(.6)
  135. end
  136. end
  137. end)
  138.  
  139. SSkill.Name = "Swordskill"
  140. SSkill.Parent = Chat
  141. SSkill.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  142. SSkill.BackgroundTransparency = 0.60000002384186
  143. SSkill.BorderSizePixel = 0
  144. SSkill.Position = UDim2.new(0, 340, 0, 75)
  145. SSkill.Size = UDim2.new(0, 70, 0, 70)
  146. SSkill.Font = Enum.Font.SourceSansLight
  147. SSkill.FontSize = Enum.FontSize.Size18
  148. SSkill.Text = "SwordSkill"
  149. SSkill.TextColor3 = Color3.new(1, 1, 1)
  150. SSkill.TextStrokeColor3 = Color3.new(1, 1, 1)
  151. SSkill.MouseButton1Down:connect(function(open)
  152. game.ReplicatedStorage.EffectHandler:InvokeServer("SwordSkill", 1e+9)
  153. deb=true
  154. end)
  155.  
  156. TSSkill.Name = "SwordSkillTimer"
  157. TSSkill.Parent = Chat
  158. TSSkill.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  159. TSSkill.BackgroundTransparency = 0.60000002384186
  160. TSSkill.BorderSizePixel = 0
  161. TSSkill.Position = UDim2.new(0, 260, 0, 75)
  162. TSSkill.Size = UDim2.new(0, 70, 0, 53)
  163. TSSkill.Font = Enum.Font.SourceSansLight
  164. TSSkill.FontSize = Enum.FontSize.Size14
  165. TSSkill.Text = "SS Time"
  166. TSSkill.TextColor3 = Color3.new(1, 1, 1)
  167. TSSkill.TextStrokeColor3 = Color3.new(1, 1, 1)
  168.  
  169. MobKill.Name = "Kill a Mob"
  170. MobKill.Parent = Chat
  171. MobKill.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  172. MobKill.BackgroundTransparency = 0.60000002384186
  173. MobKill.BorderSizePixel = 0
  174. MobKill.Position = UDim2.new(0, 420, 0, 75)
  175. MobKill.Size = UDim2.new(0, 70, 0, 53)
  176. MobKill.Font = Enum.Font.SourceSansLight
  177. MobKill.FontSize = Enum.FontSize.Size18
  178. MobKill.Text = "Kill Mob"
  179. MobKill.TextColor3 = Color3.new(1, 1, 1)
  180. MobKill.TextStrokeColor3 = Color3.new(1, 1, 1)
  181.  
  182. SAnim.Name = "Anims"
  183. SAnim.Parent = Chat
  184. SAnim.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  185. SAnim.BackgroundTransparency = 0.60000002384186
  186. SAnim.BorderSizePixel = 0
  187. SAnim.Position = UDim2.new(0, 500, 0, 75)
  188. SAnim.Size = UDim2.new(0, 70, 0, 70)
  189. SAnim.Font = Enum.Font.SourceSansLight
  190. SAnim.FontSize = Enum.FontSize.Size18
  191. SAnim.Text = "Skill (F)"
  192. SAnim.TextColor3 = Color3.new(1, 1, 1)
  193. SAnim.TextStrokeColor3 = Color3.new(1, 1, 1)
  194. SAnim.MouseButton1Down:connect(function(open)
  195. while true do
  196. wait(0.5)
  197. local lr = game.Players.LocalPlayer
  198. local plr = game.Players.LocalPlayer
  199. local ms = plr:GetMouse()
  200. ms.KeyDown:connect(function(k)
  201. local chr = plr.Character
  202. if (k:lower() == 'f') and chr and (not deb) then
  203. print("HAX!!!")
  204. deb = true
  205. coroutine.resume(coroutine.create(function()
  206. lr.Character.Touched:Connect(function(Dmg)
  207. if Dmg:FindFirstChild("Humanoid") then
  208. game.ReplicatedStorage.CombatHandler:InvokeServer(Dmg)
  209. wait(0.2)
  210. game.ReplicatedStorage.CombatHandler:InvokeServer(Dmg)
  211. wait(0.2)
  212. game.ReplicatedStorage.CombatHandler:InvokeServer(Dmg)
  213. end
  214. end)
  215. end))
  216. local hum = chr:FindFirstChild('Humanoid')
  217. if hum then
  218. local anim = hum:LoadAnimation(game.ReplicatedStorage.Database.Animations.SwordSkill1)
  219. game.ReplicatedStorage.EffectHandler:InvokeServer("SwordSkill", 3)
  220. anim:Play()
  221. wait(3)
  222. end
  223. deb = false
  224. end
  225. end)
  226. end
  227. end)
  228.  
  229. T1.Name = "T1"
  230. T1.Parent = MlDmg
  231. T1.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  232. T1.BackgroundTransparency = 0.60000002384186
  233. T1.Position = UDim2.new(0, 0, 0, 55)
  234. T1.Size = UDim2.new(0, 70, 0, 15)
  235. T1.Font = Enum.Font.SourceSansLight
  236. T1.FontSize = Enum.FontSize.Size14
  237. T1.Text = "[Amount]"
  238. T1.TextColor3 = Color3.new(1, 1, 1)
  239. Multixx = T1.Text
  240. MlDmg.MouseButton1Down:connect(function(open)
  241. local Multixx = T1.Text
  242. local inv445 = game.Players.LocalPlayer.PlayerGui
  243. for i=1, Multixx do
  244. local m3e = inv445.WeaponHandler:Clone()
  245. m3e.Parent = inv445
  246. end
  247. end)
  248.  
  249. T2.Name = "T2"
  250. T2.Parent = TSSkill
  251. T2.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  252. T2.BackgroundTransparency = 0.60000002384186
  253. T2.BorderSizePixel = 0
  254. T2.Position = UDim2.new(0, 0, 0, 55)
  255. T2.Size = UDim2.new(0, 70, 0, 15)
  256. T2.Font = Enum.Font.SourceSansLight
  257. T2.FontSize = Enum.FontSize.Size14
  258. T2.Text = "[Time]"
  259. T2.TextColor3 = Color3.new(1, 1, 1)
  260. Timexx = T2.Text
  261. TSSkill.MouseButton1Down:connect(function(open)
  262. Timexx = T2.Text
  263. game.ReplicatedStorage.EffectHandler:InvokeServer("SwordSkill", Timexx)
  264. deb=true
  265. end)
  266.  
  267. T3.Name = "T3"
  268. T3.Parent = MobKill
  269. T3.BackgroundColor3 = Color3.new(1, 0, 0.968628)
  270. T3.BackgroundTransparency = 0.60000002384186
  271. T3.BorderSizePixel = 0
  272. T3.Position = UDim2.new(0, 0, 0, 55)
  273. T3.Size = UDim2.new(0, 70, 0, 15)
  274. T3.Font = Enum.Font.SourceSansLight
  275. T3.FontSize = Enum.FontSize.Size14
  276. T3.Text = "[Mob]"
  277. T3.TextColor3 = Color3.new(1, 1, 1)
  278. Mobxx = T3.Text
  279. MobKill.MouseButton1Down:connect(function(open)
  280. Mobxx = T3.Text
  281. while true do
  282. wait(1.5)
  283. for i, v in pairs(workspace.Mobs[Mobxx]) do
  284. local l223 = v:GetModelCFrame().p
  285. game.Players.LocalPlayer.Character:MoveTo(l223)
  286. for i = 1, 50 do
  287. spawn(function()
  288. game.ReplicatedStorage.CombatHandler:InvokeServer(v)
  289. wait(.5)
  290. game.ReplicatedStorage.CombatHandler:InvokeServer(v)
  291. end)
  292. game.ReplicatedStorage.CombatHandler:InvokeServer(v)
  293. end
  294. wait(.6)
  295. end
  296. end
  297. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement