Roblox Dragon Ball Super 2 Hack

Each race has transformations that scale in level to where they occurred in the Dragonball storyline They Increase your speed and damage, but some research is required on the damage boost side. Transformations require a chat entry somewhat representing the name of it, for example: Super Saiyan - 'SSJ' in chat. Stack in Damage Boosts is how much damage the transform provides on top of your.

Jun 19th, 2015
Never
Not a member of Pastebin yet?Sign Up, it unlocks many cool features!
  1. --when you see YOURDRAGONNAME that means type your dragon name and when you see YOURNAMEHERE that mean you have to put your name--
  2. Surfaces = {'FrontSurface', 'BackSurface', 'TopSurface', 'BottomSurface', 'LeftSurface', 'RightSurface'}
  3. necko = CFrame.new(0, 1, 0, -1, -0, -0, 0, 0, 1, 0, 1, 0)
  4. selected = false
  5. Hurt = false
  6. Deb = true
  7. Able = true
  8. Prop = {Damage = 30}
  9. ToolIcon = '
  10. MouseIc = '
  11. MouseDo = '
  12. Add = {
  13. Sphere = function(P)
  14. local m = Instance.new('SpecialMesh',P)
  15. m.MeshType = 'Sphere'
  16. return m
  17. end,
  18. BF = function(P)
  19. local bf = Instance.new('BodyForce',P)
  20. bf.force = Vector3.new(0, P:GetMass()*187, 0)
  21. return bf
  22. end,
  23. BP = function(P)
  24. local bp = Instance.new('BodyPosition',P)
  25. bp.maxForce = Vector3.new(math.huge, 0, math.huge)
  26. bp.P = 14000
  27. return bp
  28. end,
  29. BG = function(P)
  30. local bg = Instance.new('BodyGyro',P)
  31. bg.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  32. bg.P = 14000
  33. return bg
  34. end,
  35. Mesh = function(P, ID, x, y, z)
  36. local m = Instance.new('SpecialMesh')
  37. m.MeshId = ID
  38. m.Scale = Vector3.new(x, y, z)
  39. m.Parent = P
  40. return m
  41. end,
  42. Sound = function(P, ID, vol, pitch)
  43. local s = Instance.new('Sound')
  44. s.SoundId = ID
  45. s.Volume = vol
  46. s.Pitch = pitch
  47. s.Parent = P
  48. return s
  49. end
  50. }
  51. function find(tab, arg)
  52. local ah = nil
  53. for i,v in pairs(tab) do
  54. if v arg then
  55. ah = v
  56. end
  57. end
  58. return ah
  59. end
  60. function getAllParts(from)
  61. local t = {}
  62. function getParts(where)
  63. for i, v in pairs(where:children()) do
  64. if v:IsA('BasePart') then
  65. if v.Parent ~= char and v.Parent.Parent ~= char then
  66. table.insert(t, v)
  67. end
  68. end
  69. getParts(v)
  70. end
  71. end
  72. getParts(workspace)
  73. return t
  74. end
  75. function RayCast(pos1, pos2, maxDist, forward)
  76. local list = getAllParts(workspace)
  77. local pos0 = pos1
  78. for dist = 1, maxDist, forward do
  79. pos0 = (CFrame.new(pos1, pos2) * CFrame.new(0, 0, -dist)).p
  80. for _, v in pairs(list) do
  81. local pos3 = v.CFrame:pointToObjectSpace(pos0)
  82. local s = v.Size
  83. if pos3.x > -(s.x/2) and pos3.x < (s.x/2) and pos3.y > -(s.y/2) and pos3.y < (s.y/2) and pos3.z > -(s.z/2) and pos3.x < (s.z/2) and v.CanCollide true then
  84. return pos0, v
  85. end
  86. end
  87. end
  88. return pos0, nil
  89. end
  90. function Part(Parent, Anchor, Collide, Tran, Ref, Color, X, Y, Z, Break)
  91. local p = Instance.new('Part')
  92. p.formFactor = 'Custom'
  93. p.Anchored = Anchor
  94. p.CanCollide = Collide
  95. p.Transparency = Tran
  96. p.Reflectance = Ref
  97. p.BrickColor = BrickColor.new(Color)
  98. for _, Surf in pairs(Surfaces) do
  99. p[Surf] = 'Smooth'
  100. end
  101. p.Size = Vector3.new(X, Y, Z)
  102. if Break then
  103. p:BreakJoints()
  104. else p:MakeJoints() end
  105. p.Parent = Parent
  106. return p
  107. end
  108. function Weld(p0, p1, x, y, z, a, b, c)
  109. local w = Instance.new('Weld')
  110. w.Parent = p0
  111. w.Part0 = p0
  112. w.Part1 = p1
  113. w.C1 = CFrame.new(x,y,z) * CFrame.Angles(a,b,c)
  114. return w
  115. end
  116. function ComputePos(pos1, pos2)
  117. local pos3 = Vector3.new(pos2.x, pos1.y, pos2.z)
  118. return CFrame.new(pos1, pos3)
  119. end
  120. function getHumanoid(c)
  121. local h = nil
  122. for i,v in pairs(c:children()) do
  123. if v:IsA('Humanoid') and c ~= char then
  124. if v.Health > 0 then
  125. h = v
  126. end
  127. end
  128. end
  129. return h
  130. end
  131. for i,v in pairs(char:children()) do
  132. if v.Name Modelname or v.Name PetName then
  133. v:remove()
  134. end
  135. end
  136. torso = char.Torso
  137. neck = torso.Neck
  138. hum = char.Humanoid
  139. Rarm = char['Right Arm']
  140. Larm = char['Left Arm']
  141. Rleg = char['Right Leg']
  142. Lleg = char['Left Leg']
  143. hc = Instance.new('Humanoid')
  144. hc.Health = 0
  145. hc.MaxHealth = 0
  146. slash = Add.Sound(nil, 'rbxasset://sounds//swordslash.wav', 0.9, 0.8)
  147. hitsound = Add.Sound(nil, 'http://www.roblox.com/asset/?id=2801263', 0.7, 0.6)
  148. charge = Add.Sound(nil, 'http://www.roblox.com/asset/?id=2101137', 0.8, 0.65)
  149. boom = Add.Sound(nil, 'http://www.roblox.com/asset/?id=2691586', 0.8, 0.3)
  150. smashsound = Add.Sound(nil, 'http://www.roblox.com/asset/?id=2692806', 0.8, 0.35)
  151. boomboom = Add.Sound(nil, 'http://www.roblox.com/asset/?id=2760979', 1, 0.18)
  152. function PlaySound(sound, pitch, vol)
  153. local s = sound:clone()
  154. if pitch ~= nil then
  155. if tonumber(pitch) then
  156. s.Pitch = tonumber(pitch)
  157. end
  158. end
  159. if vol ~= nil then
  160. if tonumber(vol) then
  161. s.Volume = tonumber(vol)
  162. end
  163. end
  164. s.Parent = torso
  165. s.PlayOnRemove = true
  166. coroutine.resume(coroutine.create(function()
  167. wait()
  168. s:remove()
  169. end))
  170. end
  171. Mo = Instance.new('Model')
  172. Mo.Name = Modelname
  173. RABrick = Part(Mo, false, false, 1, 0, 'White', 0.1, 0.1, 0.1, true)
  174. LABrick = Part(Mo, false, false, 1, 0, 'White', 0.1, 0.1, 0.1, true)
  175. RLBrick = Part(Mo, false, false, 1, 0, 'White', 0.1, 0.1, 0.1, true)
  176. LLBrick = Part(Mo, false, false, 1, 0, 'White', 0.1, 0.1, 0.1, true)
  177. RABW = Weld(torso, RABrick, -1.5, -0.5, 0, 0, 0, 0)
  178. LABW = Weld(torso, LABrick, 1.5, -0.5, 0, 0, 0, 0)
  179. RLBW = Weld(torso, RLBrick, -0.5, 1.2, 0, 0, 0, 0)
  180. LLBW = Weld(torso, LLBrick, 0.5, 1.2, 0, 0, 0, 0)
  181. RAW = Weld(RABrick, nil, 0, 0.5, 0, 0, 0, 0)
  182. LAW = Weld(LABrick, nil, 0, 0.5, 0, 0, 0, 0)
  183. RLW = Weld(RLBrick, nil, 0, 0.8, 0, 0, 0, 0)
  184. LLW = Weld(LLBrick, nil, 0, 0.8, 0, 0, 0, 0)
  185. HB = Part(Mo, false, false, 1, 0, 'White', 0.1, 0.1, 0.1, true)
  186. HBW = Weld(Rarm, HB, 0, 1, 0, 0, 0, 0)
  187. HW = Weld(HB, nil, 0, -1.3, 0, math.pi/2, 0, 0)
  188. TH = Weld(torso, nil, -0.8, 0.4, -0.4, 0, math.pi/2, math.rad(80))
  189. RAWStand, LAWStand, RLWStand, LLWStand, HWStand = nil
  190. --handle = Part(Mo, false, false, 0, 0, GuitarColour, 0.6, 1.5, 1.5, true)
  191. Pet = Instance.new('Model')
  192. Pet.Name = PetName
  193. petbody = Part(Pet, false, true, 0, 0, MainColor, 3, 2.6, 6, true)
  194. Add.Sphere(petbody)
  195. petbody.CFrame = torso.CFrame * CFrame.new(4, 0, 0)
  196. bodytrim = Part(Pet, false, true, 0, 0, 'Cool yellow', 2.7, 2.4, 5.4, true)
  197. Add.Sphere(bodytrim)
  198. Weld(petbody, bodytrim, 0, 0.25, 0, 0, 0, 0)
  199. neckplace = Part(Pet, false, false, 0, 0, 'Cool yellow', 0.1, 0.1, 0.1, true)
  200. Weld(petbody, neckplace, 0, -0.2, 2.6, 0, 0, 0)
  201. Mo.Parent = char
  202. Pet.Parent = char
  203. TH.Part1 = handle
  204. if script.Parent.className ~= 'HopperBin' then
  205. h = Instance.new('HopperBin',me.Backpack)
  206. h.Name = Toolname
  207. h.TextureId = ToolIcon
  208. script.Parent = h
  209. end
  210. bin = script.Parent
  211. function detach(bool)
  212. LLW.C0 = CFrame.new(0, 0, 0)
  213. RLW.C0 = CFrame.new(0, 0, 0)
  214. LAW.C0 = CFrame.new(0,0,0)
  215. RAW.C0 = CFrame.new(0, 0, 0)
  216. if bool then
  217. LLW.Part1 = nil
  218. RLW.Part1 = nil
  219. RAW.Part1 = nil
  220. LAW.Part1 = nil
  221. end
  222. end
  223. function attach()
  224. RAW.Part1 = Rarm
  225. LAW.Part1 = Larm
  226. RLW.Part1 = Rleg
  227. LLW.Part1 = Lleg
  228. end
  229. function normal()
  230. neck.C0 = NeckStand
  231. RAW.C0 = RAWStand
  232. LAW.C0 = LAWStand
  233. RLW.C0 = RLWStand
  234. LLW.C0 = LLWStand
  235. RAW.C1 = CFrame.new(0, 0.5, 0)
  236. LAW.C1 = CFrame.new(0, 0.5, 0)
  237. RLW.C1 = CFrame.new(0, 0.8, 0)
  238. LLW.C1 = CFrame.new(0, 0.8, 0)
  239. HW.C0 = HWStand
  240. end
  241. function idleanim()
  242. attach()
  243. for i = 0, 1, 0.03 do
  244. RAW.C0 = RAWStand * CFrame.Angles(0, 0, 0)
  245. LAW.C0 = LAWStand * CFrame.Angles(0, 0, 0)
  246. RLW.C0 = RLWStand * CFrame.Angles(0, 0, 0)
  247. LLW.C0 = LLWStand * CFrame.Angles(0, 0, 0)
  248. neck.C0 = NeckStand * CFrame.Angles(0, 0, 0)
  249. if selected false or torso.Velocity.magnitude > 2 or Able false then break end
  250. wait()
  251. end
  252. wait()
  253. for i = 1, 0, -0.02 do
  254. RAW.C0 = RAWStand * CFrame.Angles(0, 0, 0)
  255. LAW.C0 = LAWStand * CFrame.Angles(0, 0, 0)
  256. RLW.C0 = RLWStand * CFrame.Angles(0, 0, 0)
  257. LLW.C0 = LLWStand * CFrame.Angles(0, 0, 0)
  258. neck.C0 = NeckStand * CFrame.Angles(0, 0, 0)
  259. if selected false or torso.Velocity.magnitude > 2 or Able false then break end
  260. wait()
  261. end
  262. normal()
  263. end
  264. function runanim()
  265. RLW.Part1 = nil
  266. LLW.Part1 = nil
  267. end
  268. coroutine.resume(coroutine.create(function()
  269. while true do
  270. wait()
  271. if selected and Able true then
  272. if torso.Velocity.magnitude < 2 then
  273. --idleanim()
  274. wait()
  275. else
  276. --runanim()
  277. wait()
  278. end
  279. end
  280. end
  281. end))
  282. function selectanim()
  283. attach()
  284. if RAWStand nil then
  285. RAWStand = RAW.C0
  286. LAWStand = LAW.C0
  287. RLWStand = RLW.C0
  288. LLWStand = LLW.C0
  289. HWStand = HW.C0
  290. end
  291. normal()
  292. end
  293. function deselanim()
  294. neck.C0 = necko
  295. detach(true)
  296. end
  297. function select(mouse)
  298. selectanim()
  299. selected = true
  300. mouse.KeyDown:connect(function(key)
  301. key = key:lower()
  302. end)
  303. mouse.Button1Down:connect(function()
  304. end)
  305. end
  306. function deselect(mouse)
  307. selected = false
  308. deselanim()
  309. end
  310. bin.Selected:connect(select)
  311. bin.Deselected:connect(deselect)


Roblox (2006)

You Asked I Delivered.. 🚚
🌟 Bugxie 🌟 • Providing you the best virus-free Roblox Exploit Videos!
🔔JOIN OUR DISCORD:
https://discord.me/bugxie
✅Script : https://bit.ly/3jpYeoz
🌟Pages
Roblox profile : https://www.roblox.com/users/1037290265/profile
Roblox Group : www.roblox.com/groups/5642372/Bugxie
════════════════════════════
✅ALL CREDITS GOES TO RESPECTIVE OWNERS!✅
✔️DISCLAIMER ✔️
☑️ Copyright Disclaimer Under Section 107 of the Copyright Act 1976, allowance is made for 'fair use' for purposes such as criticism, comment, news reporting, teaching, scholarship, and research. Fair use is a use permitted by copyright statute that might otherwise be infringing. Non-profit, educational or personal use tips the balance in favor of fair use.
☑️ This product is meant for educational purposes only. Any resemblance to real persons, living or dead is purely coincidental. This is work in progress and subject to change. Void where prohibited. Some assembly required.
⚠️ Section 22, Law (1993: 1007) Everyone may quote from published works in accordance with good practice and to the extent motivated by the purpose. ⚠️
Any DMCA take down(s) towards our videos will be immediately replied to with a
notification forcing you to attend at Norwegian courts in order to keep the strike on our channel.
What is Roblox Exploiting?
Common ROBLOX Exploits allows you to cheat and unlock special abilities that usually costs real money for free. It gives you the possibility to fly, teleport, get unlimited cash and unlock all the special attributes. The latest ROBLOX exploits provides maximum security so that you can fly around and gain unlimited cash and experienece while banning other ROBLOX users as well as to chat unrestricted without the feeling of being watched and getting banned. It's a tool to allow users who cannot afford to purchase stuff in game, to get the same chance as everyone to have fun which otherwise would cost alot. In a nutshell, the ROBLOX Exploits lets you leave your best impression in the game, and everyone will look up to you! So, what are you waiting for?
Thanks For The Support!,
-Bugxie 💗



Other Videos By Bugxie


2020-11-02Big Paintball | HOW TO UNLOCK ALL WEPONS! [OP]| *Pastebin* | ✅WORKING✅
2020-11-02[OP!] Dragon Ball Rage HACK | MAX STATS, AUTO FARM & MORE | ✅WORKING✅
2020-11-02[OP!] MURDER MYSTERY 2 HACK | AUTO FARM, KILL ALL, ESP & MORE | Roblox | ✅ Working ✅
2020-10-31ROBLOX ARSENAL HACK | GODMODE, AIMBOT, KILL ALL & MORE [SUPER OP GUI] | ✅ Unpatched ✅
2020-10-30ASSASSIN | HOW TO GET SILENT AIM | ROBLOX | ✅WORKING✅
2020-10-29*OP* Build A Boat For Treasure HACK | INFINITE GOLD | ✅WORKING✅
2020-10-29[UPDATED] All Star Tower Defense HACK | MAX LEVEL [ AUTO FARM, WAVE SKIP & AUTOPLACER ]✅UNPATCHED ✅
2020-10-28Adopt Me HACK | STEAL PETS FROM OTHER PLAYERS [ OP ] | ✅WORKING✅
2020-10-27All Star Tower Defense HACK | UNLIMITED MONEY [ AUTO FARM & AUTOPLACER ] | UNPATCHED ✅
2020-10-25[OP] Vehicle Legends HACK | UNLIMITED CREDITS AUTO FARM | UNPATCHED ✅
2020-10-24[UPDATED] BEST SHINOBI LIFE 2 HACK | MAX LEVEL, AUTO FARM, WAR FARM & MORE | UNPATCHED ✅
2020-10-24ASSASSIN HACK [OP GUI] | KILL ALL ✅
2020-10-23World Zero HACK | Kill Aura, Godmode & MORE [OP GUI] | Unpatched ✅
2020-10-23INFINITE CANDY HACK | ASSASSIN
2020-10-23ASSASSIN KILL ALL
2020-10-22SHINOBI LIFE 2 HACK | MAX RANK, AUTOFARM, WAR HACK & MORE | UNPATCHED ✅
2020-10-21MOST OVERPOWERED ARSENAL HACKS | AIMBOT, KILL ALL, ESP & MORE | UNPATCHED ✅
2020-10-21BUYING HEADLESS HORSEMAN (31,000 ROBUX) | Roblox
2020-10-20MOST OVERPOWERED Shinobi Life 2 HACKS | Auto Farm, Max Level under 1 Hour | Unpatched
2020-10-20The Streets HACK | Admin, Aimbot, Fly, Item ESP (Money), Teleport & MORE | Unpatched ✅
2020-10-20Anime Fighting Simulator Hack | OP Gui Script Hack | Roblox | Pastebin | 2020 Unpatched✅


Tags:
shinobi life 2
shinobi life 2 script
roblox shinobi life 2 hack
shinobi life script
shinobi life 2 hack gui
roblox shinobi life 2 codes
shinobi life 2 script hack
shinobi life 2 codes
Roblox dragon ball super 2 hack cheats
roblox hack

Roblox Dragon Ball Super 2 Hack Games

roblox admin
shinobi

Roblox Dragon Ball Super 2 Hack

op