Advertisement
Nudrius

Goku FE Save

May 29th, 2019
344
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 253.67 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86.  
  87. local h,t
  88. --Give the server mouse data every second frame, but only if the values changed
  89. --If player is not moving their mouse, client won't fire events
  90. local HB = game:GetService("RunService").Heartbeat
  91. while true do
  92. if h~=Mouse.Hit or t~=Mouse.Target then
  93. h,t=Mouse.Hit,Mouse.Target
  94. Event:FireServer({isMouse=true,Target=t,Hit=h})
  95. end
  96. --Wait 2 frames
  97. for i=1,2 do
  98. HB:Wait()
  99. end
  100. end]==],script)
  101.  
  102. ----Sandboxed game object that allows the usage of client-side methods and services
  103. --Real game object
  104. local RealGame = game
  105.  
  106. --Metatable for fake service
  107. local FakeService_Metatable = {
  108. __index = function(self,k)
  109. local s = rawget(self,"_RealService")
  110. if s then
  111. return typeof(s[k])=="function"
  112. and function(_,...)return s[k](s,...)end or s[k]
  113. end
  114. end,
  115. __newindex = function(self,k,v)
  116. local s = rawget(self,"_RealService")
  117. if s then s[k]=v end
  118. end
  119. }
  120. local function FakeService(t,RealService)
  121. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  122. return setmetatable(t,FakeService_Metatable)
  123. end
  124.  
  125. --Fake game object
  126. local FakeGame = {
  127. GetService = function(self,s)
  128. return rawget(self,s) or RealGame:GetService(s)
  129. end,
  130. Players = FakeService({
  131. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  132. },"Players"),
  133. UserInputService = FakeService(UIS,"UserInputService"),
  134. ContextActionService = FakeService(CAS,"ContextActionService"),
  135. RunService = FakeService({
  136. _btrs = {},
  137. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  138. BindToRenderStep = function(self,name,_,fun)
  139. self._btrs[name] = self.Heartbeat:Connect(fun)
  140. end,
  141. UnbindFromRenderStep = function(self,name)
  142. self._btrs[name]:Disconnect()
  143. end,
  144. },"RunService")
  145. }
  146. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  147. FakeGame.service = FakeGame.GetService
  148. FakeService(FakeGame,game)
  149. --Changing owner to fake player object to support owner:GetMouse()
  150. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  151. end
  152.  
  153. --wait(2)
  154.  
  155. -- G
  156. -- O RI
  157. -- K SK PT
  158. -- U R
  159. -- 6
  160.  
  161. warn("R6 Goku Script")
  162.  
  163. -- G
  164. -- O RI
  165. -- K SC PT
  166. -- U R
  167. -- 6
  168.  
  169. print("Transformations are: SSJ1, Full Power SSJ1, SSJ2, SSJ 'Rage' (or SSJ Anger, wich one you prefer), 'Uncontrolled' SSJ (Looks more a 'Semi' SSJ Berserk), Mystic, , Full Power SSJB, SSJB, Kaioken (X2, X4), Super Kaioken (starts at X3, but automatically goes Kaioken X5), SSJB + Kaioken (From X10 to X20), the SSJ4, Migatte No Gokui / Ultra Instinct, and the combination/fusion of SSJG and UI ('Limit Breaker').")
  170.  
  171. warn("--")
  172.  
  173. print("Moves are: Kamehameha [E] ([R] if you're using Mystic), Kamehameha X10 [R] (SSJ4 necessary), Super Kamehameha [E] (SSJ3 or SSJ2 necessary), Ultimate Kamehameha [Q] (Mystic necessary), 'Uncontrolled' SSJ's Kamehameha [E] (Yeah, 'Uncontrolled' SSJ necessary), Ki Blast [T], Punch [Z], Instant Transmission [X], Angry Kamehameha [E] (Needs SSJ1 or SSJ 'Rage' activated), UI's Kamehameha [E] (Obviously needs Ultra Instinct / Migatte No Gokui), and LB's Kamehameha (Its like a Kamehameha Times Ten version of Ultra Instinct with Godly/Divine Ki) [E] (Needs Limit Breaker activated).")
  174.  
  175. warn("--")
  176.  
  177. print("Transformation Keys are: I'm too fucking lazy to say and its multiple key and key-combinations, so, find it out yourself.")
  178.  
  179. neckp = game.Players.LocalPlayer.Character.Torso.Neck.C0
  180. neck = game.Players.LocalPlayer.Character.Torso.Neck
  181.  
  182. spawn(function()
  183.  
  184. local c = game.Players.LocalPlayer.Character
  185.  
  186. c.Head.BrickColor = BrickColor.new("Light orange")
  187. c.Torso.BrickColor = BrickColor.new("Light orange")
  188. c["Right Arm"].BrickColor = BrickColor.new("Light orange")
  189. c["Left Arm"].BrickColor = BrickColor.new("Light orange")
  190. c["Right Leg"].BrickColor = BrickColor.new("Light orange")
  191. c["Left Leg"].BrickColor = BrickColor.new("Light orange")
  192.  
  193. c["Body Colors"]:Remove()
  194.  
  195. local bc = Instance.new("BodyColors",c)
  196. bc.Name = "BC"
  197. bc.HeadColor = BrickColor.new("Light orange")
  198. bc.LeftArmColor = BrickColor.new("Light orange")
  199. bc.LeftLegColor = BrickColor.new("Light orange")
  200. bc.RightArmColor = BrickColor.new("Light orange")
  201. bc.RightLegColor = BrickColor.new("Light orange")
  202. bc.TorsoColor = BrickColor.new("Light orange")
  203.  
  204. end)
  205.  
  206. wait(.09)
  207.  
  208. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  209. if v.ClassName == "Accessory" then
  210. v:Destroy()
  211. end
  212. end
  213.  
  214.  
  215. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  216. if v.ClassName == "Accessory" then
  217. v:Remove()
  218. end
  219. end
  220.  
  221. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  222. if v.ClassName == "Shirt" then
  223. v:Remove()
  224. end
  225. end
  226.  
  227.  
  228.  
  229.  
  230. for i,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  231. if v.ClassName == "Pants" then
  232. v:Remove()
  233. end
  234. end
  235.  
  236. local shirt = Instance.new("Shirt",game.Players.LocalPlayer.Character)
  237. shirt.Name = "Shirt"
  238. shirt.ShirtTemplate = "rbxassetid://259849794"
  239.  
  240. local pants = Instance.new("Pants",game.Players.LocalPlayer.Character)
  241. pants.Name = "Pants"
  242. pants.PantsTemplate = "rbxassetid://539482020"
  243.  
  244. for _,v in pairs(game.Players.LocalPlayer.Character:GetChildren()) do
  245. if v.Name == "Shirt Graphic" then
  246. v:Remove()
  247. end
  248. end
  249.  
  250. function chatfunc(text)
  251. local chat = coroutine.wrap(function()
  252. if game.Players.LocalPlayer.Character:FindFirstChild("TalkingBillBoard")~= nil then
  253. game.Players.LocalPlayer.Character:FindFirstChild("TalkingBillBoard"):destroy()
  254. end
  255. local naeeym2 = Instance.new("BillboardGui",game.Players.LocalPlayer.Character)
  256. naeeym2.Size = UDim2.new(0,100,0,40)
  257. naeeym2.StudsOffset = Vector3.new(0,3,0)
  258. naeeym2.Adornee = game.Players.LocalPlayer.Character.Head
  259. naeeym2.Name = "TalkingBillBoard"
  260. local tecks2 = Instance.new("TextLabel",naeeym2)
  261. tecks2.BackgroundTransparency = 1
  262. tecks2.BorderSizePixel = 0
  263. tecks2.Text = ""
  264. tecks2.Font = "Cartoon"
  265. tecks2.TextSize = 30
  266. tecks2.TextStrokeTransparency = 0
  267. tecks2.TextColor3 = Color3.fromRGB(25,25,25)
  268. tecks2.TextStrokeColor3 = Color3.fromRGB(0,199,225)
  269. tecks2.Size = UDim2.new(1,0,0.5,0)
  270. local tecks3 = Instance.new("TextLabel",naeeym2)
  271. tecks3.BackgroundTransparency = 1
  272. tecks3.BorderSizePixel = 0
  273. tecks3.Text = ""
  274. tecks3.Font = "Cartoon"
  275. tecks3.TextSize = 30
  276. tecks3.TextStrokeTransparency = 0
  277. tecks3.TextColor3 = Color3.fromRGB(50,50,50)
  278. tecks3.TextStrokeColor3 = Color3.fromRGB(0,199,250)
  279. tecks3.Size = UDim2.new(1,0,0.5,0)
  280. for i = 1,string.len(text),1 do
  281.  
  282. tecks2.Text = string.sub(text,1,i)
  283. tecks3.Text = string.sub(text,1,i)
  284. wait(0.01)
  285. end
  286. wait(2)
  287. for i = 1, 50 do
  288.  
  289. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  290. tecks2.Rotation = tecks2.Rotation - .8
  291. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  292. tecks2.TextTransparency = tecks2.TextTransparency + .04
  293. tecks3.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  294. tecks3.Rotation = tecks2.Rotation + .8
  295. tecks3.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  296. tecks3.TextTransparency = tecks2.TextTransparency + .04
  297. end
  298. naeeym2:Destroy()
  299. end)
  300. chat()
  301.  
  302. end
  303. function onChatted(msg)
  304. chatfunc(msg)
  305.  
  306. end
  307. game.Players.LocalPlayer.Chatted:connect(onChatted)
  308.  
  309. local p = game.Players.LocalPlayer
  310. local char = p.Character
  311. local hed = char.Head
  312. local arm1 = char["Right Arm"]
  313. local arm2 = char["Left Arm"]
  314. local leg1 = char["Right Leg"]
  315. local leg2 = char["Left Leg"]
  316. local tor = char.Torso
  317. local hrp = char.HumanoidRootPart
  318. char.Humanoid.Name = "DragonBallSuperHumanoid"
  319. local hum = char.DragonBallSuperHumanoid
  320.  
  321. local cooldown = false
  322. local potara = false
  323. local ssjg = false
  324. local ssjr = false
  325. local ssj3 = false
  326. local sss3 = false
  327. local ssj2 = false
  328. local assj2 = false
  329. local ssj1 = false
  330. local ssjb = false
  331. local fullpowerssj = false
  332. local kaioken2 = false
  333. local kaioken4 = false
  334. local kaioken5 = false
  335. local kaioken10 = false
  336. local kaioken20 = false
  337. local kaioken = false
  338. local kaiokenx50 = false
  339. local ssjbk = false
  340. local ssjwhite = false
  341. local ssjbfullpower = false
  342. local attacking = false
  343. local otherarm = false
  344. local ultrainstinct = false
  345. local automoviment = false
  346. local limitbreaker = false
  347. local being = false
  348. local normal = true
  349. local dodge = false
  350. local safe = false
  351. local fling = false
  352. local assj3 = false
  353. local available = false
  354. local auracan = false
  355. local auracan2 = false
  356. local auracan3 = false
  357. local auracan4 = false
  358. local already2 = false
  359. local already3 = false
  360. local already = false
  361. local kamehameha3 = false
  362. local kamehameha4 = false
  363. local charge = false
  364.  
  365. scream1 = Instance.new("Sound",char)
  366. scream1.SoundId = "http://www.roblox.com/asset/?id = 527276541"
  367. scream1.Volume = 10
  368. wait1 = Instance.new("Sound",char)
  369. wait1.SoundId = "http://www.roblox.com/asset/?id = 966262774"
  370. wait1.Volume = 10
  371. oho1 = Instance.new("Sound",char)
  372. oho1.SoundId = "http://www.roblox.com/asset/?id = 1377474185"
  373. oho1.Volume = 10
  374. gah1 = Instance.new("Sound",char)
  375. gah1.SoundId = "http://www.roblox.com/asset/?id = 1306739862"
  376. gah1.Volume = 10
  377.  
  378.  
  379. punch = Instance.new("Sound",game.Players.LocalPlayer.Character)
  380. punch.SoundId = "rbxassetid://1058693352"
  381. punch.Volume = 1
  382. punch.Name = "puncher"
  383.  
  384. local Mus1 = Instance.new("Sound",char)
  385. Mus1.Name = "audio"
  386. Mus1.SoundId = "rbxassetid://411274847"
  387. Mus1.Volume = 5
  388. Mus1.Looped = false
  389.  
  390. local Mus = Instance.new("Sound",char)
  391. Mus.Name = "music"
  392. Mus.Pitch = 1
  393. Mus.Volume = 5
  394. Mus.Looped = true
  395. Mus.Name = "theme"
  396.  
  397. function onChatted(msg)
  398. chatfunc(msg)
  399.  
  400. end
  401.  
  402. p.Chatted:connect(function(m)
  403. if m == "AAAAA" then
  404. scream1:Play()
  405. end
  406. end)
  407.  
  408. p.Chatted:connect(function(o)
  409. if o == "ohohoh" then
  410. oho1:Play()
  411. end
  412. end)
  413.  
  414. p.Chatted:connect(function(w)
  415. if w == "don't you dare keep me waiting" then
  416. wait1:Play()
  417. end
  418. end)
  419.  
  420. p.Chatted:connect(function(g)
  421. if g == "GAAAAAH" then
  422. gah1:Play()
  423. GroundWave1()
  424.  
  425. local list = {NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(1,0.8,0)}
  426.  
  427. local list2 = {NumberSequenceKeypoint.new(0,0.25,0),NumberSequenceKeypoint.new(1,0.50,0)}
  428.  
  429. local ssjgaura = Instance.new("ParticleEmitter",tor)
  430. ssjgaura.Name = "SSJGaura"
  431. ssjgaura.Color = ColorSequence.new(Color3.fromRGB(0, 150, 255))
  432. ssjgaura.LightEmission = 1
  433. ssjgaura.Transparency = NumberSequence.new(list2)
  434. ssjgaura.Size = NumberSequence.new(5,15)
  435. ssjgaura.Lifetime = NumberRange.new(0.9)
  436. ssjgaura.Rate = 89
  437. ssjgaura.ZOffset = -5.5
  438. ssjgaura.Speed = NumberRange.new(5)
  439. ssjgaura.LockedToPart = true
  440.  
  441. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  442. ssjgaurag.Name = "SSGaura"
  443. ssjgaurag.Color = ColorSequence.new(Color3.fromRGB(0, 50, 255))
  444. ssjgaurag.LightEmission = 0.75
  445. ssjgaurag.Transparency = NumberSequence.new(list)
  446. ssjgaurag.Size = NumberSequence.new(5,15)
  447. ssjgaurag.Lifetime = NumberRange.new(0.99)
  448. ssjgaurag.Rate = 89
  449. ssjgaurag.ZOffset = -2.5
  450. ssjgaurag.Speed = NumberRange.new(5.999)
  451. ssjgaurag.SpreadAngle = Vector2.new(0.9,0.99)
  452. ssjgaurag.LockedToPart = true
  453.  
  454. ssjgaura.Texture = "rbxassetid://256159034"
  455. ssjgaurag.Texture = "rbxassetid://256159034"
  456.  
  457. wait(4.1)
  458. ssjgaura:Destroy()
  459. ssjgaurag:Destroy()
  460.  
  461. superior()
  462. end
  463. end)
  464.  
  465. function normalpunch()
  466.  
  467. local c = game.Players.LocalPlayer.Character
  468.  
  469. if attacking == false then
  470. attacking = true
  471.  
  472. if otherarm == false then
  473. otherarm = true
  474. end
  475.  
  476. local omg = c.Torso["Right Shoulder"].C0
  477. c.Torso["Right Shoulder"].C0 = c.Torso["Right Shoulder"].C0 * CFrame.new(0.3,0,0) * CFrame.Angles(0,0,math.rad(90))
  478. local killer = Instance.new("Part",c)
  479. killer.Name = "killer"
  480. killer.Size = Vector3.new(5,5,5)
  481. killer.Transparency = 1
  482. killer:BreakJoints()
  483. killer.CanCollide = false
  484. local wel = Instance.new("Weld",killer)
  485. wel.Part0 = killer
  486. wel.Part1 = c["Right Arm"]
  487. wel.C0 = CFrame.new(0,1,0)
  488. force = 20
  489.  
  490. killer.Touched:connect(function(h)
  491.  
  492. for _,x in pairs(h.Parent:GetChildren()) do
  493. if x.ClassName == "Humanoid" then
  494.  
  495. if normal == true then
  496. fling = false
  497. end
  498.  
  499. if ultrainstinct == true or limitbreaker == true then
  500. fling = false
  501. end
  502.  
  503. local stop = h.Parent.HumanoidRootPart.Velocity
  504. if x.Parent.Name == game.Players.LocalPlayer.Name then
  505. safe = true
  506. else safe = false
  507. end
  508. if x then
  509. if safe == false then
  510. if fling == true then
  511. if normal == true then
  512. force = 2.5
  513. if ultrainstinct == true then
  514. force = 4.9
  515.  
  516. if limitbreaker == true then
  517. force = 5.9
  518.  
  519. neck.C0 = neckp
  520. wait(.050)
  521. end
  522. end
  523. end
  524. end
  525.  
  526. h.Parent.HumanoidRootPart.Velocity = CFrame.new(c.HumanoidRootPart.Position,h.Parent.HumanoidRootPart.Position).lookVector * force
  527. local bodyforc = Instance.new("BodyForce", h.Parent.HumanoidRootPart)
  528. punch:Play()
  529. bodyforc.force = Vector3.new(0, h.Parent.HumanoidRootPart:GetMass() * 196.1, 0)
  530.  
  531. wait(0.02)
  532.  
  533. x:TakeDamage(20.2555555)
  534.  
  535. if ssjb == true or ssjbfullpower == true or ssjwhite == true or ssjg == true then
  536. x:TakeDamage(55.99999)
  537. end
  538.  
  539. if ultrainstinct == true or limitbreaker == true then
  540. while true do
  541. wait(0.0000001)
  542. x:TakeDamage(math.huge)
  543. end
  544. end
  545.  
  546. wait()
  547. safe = true
  548. bodyforc:Remove()
  549. h.Parent.HumanoidRootPart.Velocity = stop
  550.  
  551. end
  552. end
  553.  
  554. end
  555. end
  556. end)
  557.  
  558. wait(0.01)
  559.  
  560. coroutine.wrap(function()
  561. for i = 7.5,2.5,0.29 do
  562. wait()
  563. end
  564. wait()
  565. killer:Remove()
  566. wait(0.5)
  567. c.Torso["Right Shoulder"].C0 = omg
  568. wait(0.05)
  569.  
  570. attacking = false
  571. wait()
  572.  
  573. end)()
  574.  
  575. end
  576.  
  577. wait(.1)
  578.  
  579. end
  580.  
  581. function normalpunch2()
  582.  
  583. local c = game.Players.LocalPlayer.Character
  584.  
  585. if attacking == false then
  586. attacking = true
  587.  
  588. if otherarm == true then
  589. otherarm = false
  590. end
  591.  
  592. local omg = c.Torso["Left Shoulder"].C0
  593. c.Torso["Left Shoulder"].C0 = c.Torso["Left Shoulder"].C0 * CFrame.new(-0.3,0,0) * CFrame.Angles(0,0,math.rad(-90))
  594. local killer = Instance.new("Part",c)
  595. killer.Name = "killer"
  596. killer.Size = Vector3.new(5,5,5)
  597. killer.Transparency = 1
  598. killer:BreakJoints()
  599. killer.CanCollide = false
  600. local wel = Instance.new("Weld",killer)
  601. wel.Part0 = killer
  602. wel.Part1 = c["Left Arm"]
  603. wel.C0 = CFrame.new(0,1,0)
  604. force = 20
  605.  
  606. killer.Touched:connect(function(h)
  607.  
  608. for _,x in pairs(h.Parent:GetChildren()) do
  609. if x.ClassName == "Humanoid" then
  610.  
  611. if normal == true then
  612. fling = false
  613. end
  614.  
  615. if ultrainstinct == true or limitbreaker == true then
  616. fling = false
  617. end
  618.  
  619. local stop = h.Parent.HumanoidRootPart.Velocity
  620. if x.Parent.Name == game.Players.LocalPlayer.Name then
  621. safe = true
  622. else safe = false
  623. end
  624. if x then
  625. if safe == false then
  626. if fling == true then
  627. if normal == true then
  628. force = 2.5
  629. if ultrainstinct == true then
  630. force = 4.9
  631. if limitbreaker == true then
  632. force = 5.9
  633.  
  634. neck.C0 = neckp
  635. wait(.50)
  636. end
  637. end
  638. end;end
  639.  
  640. h.Parent.HumanoidRootPart.Velocity = CFrame.new(c.HumanoidRootPart.Position,h.Parent.HumanoidRootPart.Position).lookVector * force
  641. local bodyforc = Instance.new("BodyForce", h.Parent.HumanoidRootPart)
  642. punch:Play()
  643. bodyforc.force = Vector3.new(0, h.Parent.HumanoidRootPart:GetMass() * 196.1, 0)
  644.  
  645. wait(0.2)
  646.  
  647. x:TakeDamage(20.2555555)
  648.  
  649. if ssjb == true then
  650. x:TakeDamage(55.99999)
  651. end
  652.  
  653. if ultrainstinct == true or limitbreaker == true then
  654. while true do
  655. wait(0.0000001)
  656. x:TakeDamage(math.huge)
  657. end
  658. end
  659.  
  660. wait()
  661. safe = true
  662. bodyforc:Remove()
  663. h.Parent.HumanoidRootPart.Velocity = stop
  664.  
  665. end
  666. end
  667.  
  668. end
  669. end
  670. end)
  671.  
  672. wait(0.1)
  673.  
  674. coroutine.wrap(function()
  675. for i = 7.5,2.5,0.29 do
  676. wait()
  677. end
  678. wait()
  679. killer:Remove()
  680. wait(0.5)
  681. c.Torso["Left Shoulder"].C0 = omg
  682. wait(0.05)
  683.  
  684. attacking = false
  685. wait()
  686. end)()
  687.  
  688. end
  689.  
  690. wait(.1)
  691.  
  692. end
  693.  
  694. -- hrp.CFrame = hit.Parent.HumanoidRootPart.CFrame * CFrame.new(0,0,2)
  695.  
  696. game.Players.LocalPlayer:GetMouse().KeyDown:connect(function(key)
  697. if key == "z" then
  698. if attacking == false then
  699. if otherarm == false then
  700. normalpunch()
  701. end
  702. end
  703. --
  704. if attacking == false then
  705. if otherarm == true then
  706. normalpunch2()
  707. end
  708. end
  709.  
  710. end
  711. end)
  712.  
  713. game.Players.LocalPlayer.Character.Head.face.Texture = "rbxassetid://967842214"
  714.  
  715. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=259849794"
  716. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=539482020"
  717.  
  718. Hair7 = Instance.new("Part")
  719. Hair7.Parent = p.Character
  720. Hair7.Name = "Hair"
  721. Hair7.CanCollide = false
  722. Hair7.Locked = true
  723. Hair7.TopSurface = "Smooth"
  724. Hair7.BottomSurface = "Smooth"
  725. Hair7.formFactor = "Symmetric"
  726. Hair7.Material = "Neon"
  727. Hair7.BrickColor = BrickColor.new("Really black")
  728. Hair7.CFrame = p.Character.Torso.CFrame
  729. Hair7.Size = Vector3.new(1, 1, 1)
  730. Hair7.Transparency = 0
  731.  
  732. Weld1 = Instance.new("Weld")
  733. Weld1.Parent = p.Character.Head
  734. Weld1.Part0 = p.Character.Head
  735. Weld1.Part1 = Hair7
  736. Weld1.C0 = CFrame.new(0, 1, 0)
  737.  
  738. Mesh = Instance.new("SpecialMesh")
  739. Mesh.Offset = Vector3.new(0.2, -0.2, 0.2)
  740. Mesh.Parent = Hair7
  741. Mesh.Scale = Vector3.new(1, 1, 1)
  742. Mesh.MeshType = "FileMesh"
  743. Mesh.MeshId = "http://www.roblox.com/asset/?id=476757756"
  744. Mesh.TextureId = ""
  745.  
  746. ape51 = Instance.new("Part",char)
  747. ape51.Transparency = 0
  748. ape51.Color = Color3.fromRGB(106,57,8)
  749. weldape5 = Instance.new("Weld",ape51)
  750. weldape5.Part0 = tor
  751. weldape5.Part1 = ape51
  752. weldape5.C0 = CFrame.new(0.4,-0,2)*CFrame.Angles(0,math.rad(90),math.rad(0))
  753. meshape5 = Instance.new("SpecialMesh",ape51)
  754. meshape5.MeshId = "rbxassetid://547956749"
  755. meshape5.TextureId = Mesh.TextureId
  756. meshape5.Scale = Vector3.new(0.025,0.025,0.025)
  757.  
  758. ape56 = Instance.new("Part",char)
  759. ape56.Transparency = 1
  760. ape56.Color = Color3.fromRGB(106,57,8)
  761. weldape6 = Instance.new("Weld",ape56)
  762. weldape6.Part0 = hrp
  763. weldape6.Part1 = ape56
  764. weldape6.C0 = CFrame.new(0.4,-0,2)*CFrame.Angles(0,math.rad(90),math.rad(0))
  765. meshape6 = Instance.new("SpecialMesh",ape56)
  766. meshape6.MeshId = "rbxassetid://547956749"
  767. meshape6.TextureId = Mesh.TextureId
  768. meshape6.Scale = Vector3.new(0.025,0.025,0.025)
  769.  
  770. local mouse = p:GetMouse()
  771.  
  772. local rock = false
  773. local roc = false
  774. local rock3 = false
  775. local rock2 = false
  776. local rock4 = false
  777. local rock5 = false
  778. local rock6 = false
  779. local GroundShake = false
  780. local GroundShake2 = false
  781.  
  782. local rad = math.rad
  783.  
  784. function RenderStepped()
  785.  
  786. if rock == true then
  787. wait(math.random(0.25,0.79))
  788. local ay = Instance.new("Part",char)
  789. ay.Name = "NewPart2"
  790. ay.Size = Vector3.new(0.299,0.299,0.299)
  791. ay.CanCollide = false
  792.  
  793. for i,v in pairs(workspace:GetChildren()) do
  794. if v:IsA("Part") then
  795. if v.Name == "Base" or v.Name == "Baseplate" then
  796.  
  797.  
  798. ay.BrickColor = v.BrickColor
  799. ay.Material = v.Material
  800. ay.Transparency = v.Transparency
  801. end
  802. end
  803. end
  804.  
  805. ay.Position = Vector3.new(999,999,999)
  806. ay.CFrame = CFrame.new(hrp.Position.x+math.random(-19,19),hrp.Position.y-2,hrp.Position.z+math.random(-19,19))
  807. local ys = Instance.new("BodyVelocity",ay)
  808. ys.Name = "GO"
  809. ys.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  810.  
  811. ys.Velocity = Vector3.new(0,5,0)
  812. game.Debris:AddItem(ay,math.random(3,4))
  813. end
  814.  
  815. ape56.Color = ape51.Color
  816. ape56.Material = ape51.Material
  817.  
  818. if hum.Health <= 29.999999 then
  819.  
  820. if char.Shirt.ShirtTemplate ~= "rbxassetid://259849794" then
  821.  
  822. char.Shirt.ShirtTemplate = "rbxassetid://259849794"
  823. char.Pants.PantsTemplate = "rbxassetid://539482020"
  824.  
  825. end
  826.  
  827. end
  828.  
  829. if fullpowerssj == true then
  830. hum.Health = hum.Health + 0.25
  831. end
  832.  
  833. if fullpowerssj == true and ssj2 == true then
  834. hum.Health = hum.Health + 0.29
  835. end
  836.  
  837. if ssjg == true then
  838. hum.Health = hum.Health + 0.25
  839. end
  840.  
  841. if ssjbk == true then
  842. hum.Health = hum.Health -0.05
  843. end
  844.  
  845. if ultrainstinct == true then
  846. wait(300)
  847. ultrainstinct = false
  848. end
  849.  
  850. if auracan == true then
  851. if available == true then
  852. tor.control.Texture = "rbxassetid://901509906"
  853. wait(.00075)
  854. tor.control.Texture = "rbxassetid://901510046"
  855. wait(.00075)
  856. tor.control.Texture = "rbxassetid://901510125"
  857. end
  858. if ssj2 == true and assj2 == false then
  859. tor.ssj2aura2.Texture = "rbxassetid://901509906"
  860. wait(.00075)
  861. tor.ssj2aura2.Texture = "rbxassetid://901510046"
  862. wait(.00075)
  863. tor.ssj2aura2.Texture = "rbxassetid://901510125"
  864. wait(.00075)
  865. tor.ssj2aura2.Texture = "rbxassetid://1072507908"
  866. end
  867. end
  868.  
  869. if auracan2 == true then
  870. if available == true then
  871.  
  872. tor.aura.Texture = "rbxassetid://639676034"
  873. wait(0.1)
  874. tor.aura.Texture = "rbxassetid://639676268"
  875. wait(0.2)
  876. tor.aura.Texture = "rbxassetid://639676527"
  877. wait(0.1)
  878. tor.aura.Texture = "rbxassetid://639676855"
  879.  
  880. tor.ssj3aura.Texture = "rbxassetid://639676034"
  881. wait(0.09)
  882. tor.ssj3aura.Texture = "rbxassetid://639676268"
  883. wait(0.1)
  884. tor.ssj3aura.Texture = "rbxassetid://639676527"
  885. wait(0.09)
  886. tor.ssj3aura.Texture = "rbxassetid://639676855"
  887.  
  888. end
  889. end
  890.  
  891. if ssjb == true and available == true then
  892. if available == true and ssjb == true then
  893. tor.SSJBaura.Texture = "http://www.roblox.com/asset/?id=894173257"
  894. wait(0.75)
  895. tor.SSJBaura.Texture = "http://www.roblox.com/asset/?id=894173392"
  896. wait(0.5)
  897. tor.SSJBaura.Texture = "http://www.roblox.com/asset/?id=890403068"
  898. wait(0.75)
  899. tor.SSJBaura.Texture = "http://www.roblox.com/asset/?id=890403512"
  900. end
  901. end
  902.  
  903. if ssjg == true then
  904. if available == true then
  905.  
  906. --tor.SSGaura.Texture = "rbxassetid://256159034"
  907. tor.SSJGaura.Texture = "rbxassetid://256159034"
  908. wait(12)
  909. --tor.SSGaura.Texture = "rbxassetid://1177939359"
  910. tor.SSJGaura.Texture = "rbxassetid://1177939359"
  911. wait(6)
  912. --tor.SSGaura.Texture = "rbxassetid://256159034"
  913. tor.SSJGaura.Texture = "rbxassetid://256159034"
  914. wait(12)
  915. --tor.SSGaura.Texture = "rbxassetid://1177939359"
  916. tor.SSJGaura.Texture = "rbxassetid://1177939359"
  917.  
  918. end
  919. end
  920.  
  921. if kamehameha3 == true then
  922. if assj3 == false then
  923. char.kame.Transparency = char.kame.Transparency - 0.006
  924. char.kame.CFrame = CFrame.new(char.kame.Position) * CFrame.Angles(rad(math.random(-50,25)),rad(math.random(-79,79)),rad(math.random(-12,24)))
  925. end
  926. if assj3 == true then
  927. char.kame.Transparency = char.kame.Transparency - 0.009
  928. char.kame.CFrame = CFrame.new(char.kame.Position) * CFrame.Angles(rad(math.random(-155,129)),rad(math.random(-290,290)),rad(math.random(-324,348)))
  929. if ultrainstinct == true or limitbreaker == true then
  930. char.kame.Transparency = char.kame.Transparency - 0.009
  931. char.kame.CFrame = CFrame.new(char.kame.Position) * CFrame.Angles(rad(math.random(-255,229)),rad(math.random(-390,390)),rad(math.random(-424,448)))
  932. if limitbreaker == true then
  933. char.kame.Transparency = char.kame.Transparency - 0.009
  934. char.kame.CFrame = CFrame.new(char.kame.Position) * CFrame.Angles(rad(math.random(-1755,1729)),rad(math.random(-1890,1890)),rad(math.random(-1924,1948)))
  935. end
  936. end
  937. end
  938. end
  939.  
  940. if kamehameha4 == true then
  941. if ssj2 == true or fullpowerssj == true or ultrainstinct == true or limitbreaker == true then
  942. char.hame.Transparency = char.hame.Transparency - 0.006
  943. char.hame.CFrame = CFrame.new(char.hame.Position) * CFrame.Angles(rad(math.random(-100,100)),rad(math.random(-300,300)),rad(math.random(-400,400)))
  944. end
  945. if ssj3 == true or fullpowerssj == true or ultrainstinct == true or limitbreaker == true then
  946. char.hame.Transparency = char.hame.Transparency - 0.009
  947. char.hame.CFrame = CFrame.new(char.hame.Position) * CFrame.Angles(rad(math.random(-155,129)),rad(math.random(-390,390)),rad(math.random(-424,448)))
  948. if ultrainstinct == true or limitbreaker == true then
  949. char.hame.Transparency = char.hame.Transparency - 0.009
  950. char.hame.CFrame = CFrame.new(char.hame.Position) * CFrame.Angles(rad(math.random(-755,729)),rad(math.random(-890,890)),rad(math.random(-924,948)))
  951. if limitbreaker == true then
  952. char.hame.Transparency = char.hame.Transparency - 0.009
  953. char.hame.CFrame = CFrame.new(char.hame.Position) * CFrame.Angles(rad(math.random(-1755,1729)),rad(math.random(-1890,1890)),rad(math.random(-1924,1948)))
  954. end
  955. end
  956. end
  957. end
  958.  
  959. if GroundShake == true then
  960. for i,v in pairs(workspace:GetChildren()) do
  961. if v:IsA("Part") then
  962. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-1,1)),rad(math.random(-1,1)),rad(math.random(-1,1)))
  963. end
  964. end
  965.  
  966. end
  967.  
  968. end
  969.  
  970. if GroundShake2 == true then
  971.  
  972. for i,v in pairs(workspace:GetChildren()) do
  973. if v:IsA("Part") then
  974. v.CFrame = CFrame.new(v.Position) * CFrame.Angles(rad(math.random(-2,2)),rad(math.random(-2,2)),rad(math.random(-2,2)))
  975. end
  976. end
  977. end
  978.  
  979. function RenderStepped2()
  980.  
  981. if limitbreaker == true then
  982.  
  983. hum.MaxHealth = math.huge
  984. hum.Health = 1e999 + 1e999 + 1e999 + 1e999 + 1e999 + 1e999 + -1e999
  985.  
  986. if automoviment == true then
  987.  
  988. hum.WalkSpeed = hum.WalkSpeed + 0.1
  989. hum.JumpPower = hum.JumpPower + 0.1
  990.  
  991. if hum.JumpPower >= 200 then
  992. if hum.WalkSpeed >= 600 then
  993. automoviment = false
  994. end;end
  995.  
  996. end;end
  997.  
  998. if ultrainstinct == true then
  999.  
  1000. hum.MaxHealth = math.huge
  1001. hum.Health = 1e999 + 1e999 + 1e999 + 1e999 + 1e999 + 1e999 + -1e999
  1002.  
  1003. if ssj == true then
  1004. hum.MaxHealth = math.huge
  1005. hum.Health = 1e999 + 1e999 + 1e999 + 1e999 + 1e999 + 1e999 + -1e999
  1006. end
  1007. end
  1008.  
  1009. if rock2 == true then
  1010. wait(0.1)
  1011.  
  1012. for i,v in pairs(char:GetChildren()) do
  1013. if v:IsA("Part") then
  1014. if v.Name == "NewPart2" then
  1015. v.GO.Velocity = Vector3.new(0,-5,0)
  1016. end
  1017. end
  1018.  
  1019. end
  1020. rock2 = false
  1021. end
  1022. if rock3 == true then
  1023. wait(0.1)
  1024. for i,v in pairs(char:GetChildren()) do
  1025. if v:IsA("Part") then
  1026. if v.Name == "NewPart2" then
  1027. v.GO.Velocity = Vector3.new(math.random(-80,80),math.random(0,20),math.random(-80,80))
  1028. end
  1029. end
  1030. end
  1031. rock3 = false
  1032. end
  1033.  
  1034. if rock4 == true then
  1035. wait(0.1)
  1036. for i,v in pairs(char:GetChildren()) do
  1037. if v:IsA("Part") then
  1038. if v.Name == "NewPart2" then
  1039. v.GO.Velocity = Vector3.new(math.random(-80,80),math.random(0,20),math.random(-80,80))
  1040. end
  1041. end
  1042. end
  1043. end
  1044.  
  1045. if rock5 == true then
  1046. wait(0.1)
  1047. for i,v in pairs(char:GetChildren()) do
  1048. if v:IsA("Part") then
  1049. if v.Name == "NewPart3" then
  1050. v.GO.Velocity = Vector3.new(math.random(-80,80),math.random(0,20),math.random(-80,80))
  1051. end
  1052. end
  1053. end
  1054. end
  1055.  
  1056. if rock6 == true then
  1057. wait(0.1)
  1058.  
  1059. for i,v in pairs(char:GetChildren()) do
  1060. if v:IsA("Part") then
  1061. if v.Name == "NewPart2" then
  1062. v.GO.Velocity = Vector3.new(0,-5,0)
  1063. end
  1064. end
  1065.  
  1066. end
  1067. end
  1068.  
  1069. end
  1070.  
  1071. game:GetService("RunService").RenderStepped:connect(RenderStepped)
  1072. game:GetService("RunService").RenderStepped:connect(RenderStepped2)
  1073.  
  1074. function ssj()
  1075. if hum.Health >= 23.999999 then
  1076. if normal == true then
  1077. if ssj1 == false and ssj2 == false and assj2 == false and ssj3 == false and ssjg == false and ssjb == false and ssjbfullpower == false and ssjwhite == false and ultrainstinct == false and fullpowerssj == false then
  1078. if being == false then
  1079. being = true
  1080. end
  1081. end
  1082. end
  1083.  
  1084. chatfunc("Full Power Super Saiyan!")
  1085.  
  1086. hum.WalkSpeed = 0
  1087. hum.JumpPower = 0
  1088.  
  1089. Mus.Pitch = 1
  1090.  
  1091. Mus:Play()
  1092. Mus.SoundId = "http://www.roblox.com/asset/?id=321942007"
  1093. Mus1:Play()
  1094.  
  1095. Hair7.Color = Color3.fromRGB(255,246,123)
  1096. ape51.Color = Color3.fromRGB(255,246,123)
  1097. Mesh.MeshId = "rbxassetid://430344159"
  1098. Mesh.Scale = Vector3.new(6.3,6.3,6.3)
  1099. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  1100.  
  1101. hed.face.Texture = "rbxassetid://231488668"
  1102.  
  1103. local num = 0
  1104. local a21e = Instance.new("Part",char)
  1105. a21e.Name = "Beam"..num
  1106. a21e.Locked = true
  1107. a21e.Size = Vector3.new(1,1,1)
  1108. a21e.CanCollide = false
  1109. a21e.Position = Vector3.new(999,999,999)
  1110. a21e.BrickColor = BrickColor.new("Cool yellow")
  1111. a21e.Material = "Neon"
  1112. a21e.Transparency = 0
  1113. local aa21e = Instance.new("SpecialMesh",a21e)
  1114. a21e.Anchored = true
  1115. a21e.Position = hrp.Position
  1116. aa21e.MeshType = "Sphere"
  1117. aa21e.Scale = Vector3.new(1,1,1)
  1118.  
  1119. for i = 1,25 do
  1120. wait()
  1121. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  1122. a21e.Transparency = a21e.Transparency + 0.04
  1123. end
  1124.  
  1125. wait(.1)
  1126.  
  1127. a21e:Remove()
  1128.  
  1129. wait()
  1130.  
  1131. hum.WalkSpeed = 55
  1132. hum.JumpPower = 75
  1133. hum.MaxHealth = math.huge
  1134. hum.Health = 500.000
  1135.  
  1136. being = false
  1137.  
  1138. ssj1 = true
  1139.  
  1140. normal = false
  1141.  
  1142. end
  1143. end
  1144.  
  1145. function angry()
  1146.  
  1147. if hum.Health <= 23.999999 then
  1148. if normal == true then
  1149. if fullpowerssj == false and ssj2 == false and assj2 == false and ssj3 == false and ssjg == false and ssjb == false and ssjbfullpower == false and ssjwhite == false and ultrainstinct == false and ssj1 == false then
  1150. if being == false then
  1151. being = true
  1152. end
  1153. end
  1154. end
  1155.  
  1156. --GroundShake = true
  1157.  
  1158. Mus.Pitch = 1
  1159.  
  1160. hum.WalkSpeed = 0
  1161. hum.JumpPower = 0
  1162.  
  1163. chatfunc("NOW I'M ANGRY!!!!")
  1164.  
  1165. Mus:Play()
  1166. Mus.SoundId = "http://www.roblox.com/asset/?id=353341880"
  1167. local Mus2 = Instance.new("Sound",char)
  1168. Mus2.SoundId = "rbxassetid://301184111"
  1169. Mus2.Volume = 4
  1170. Mus2.Looped = false
  1171. Mus2:Play()
  1172. Mus1:Play()
  1173.  
  1174. hed.face.Texture = "rbxassetid://231488725"
  1175.  
  1176. Hair7.Color = Color3.fromRGB(255,255,0)
  1177. ape51.Color = Color3.fromRGB(255,255,0)
  1178. Hair7.Material = Enum.Material.Neon
  1179. Mesh.MeshId = "rbxassetid://430344159"
  1180. Mesh.Scale = Vector3.new(6.3,6.3,6.3)
  1181. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  1182.  
  1183. local ssj2aura = Instance.new("ParticleEmitter",tor)
  1184. ssj2aura.Name = "control"
  1185. ssj2aura.Texture = "rbxassetid://241992237"
  1186. ssj2aura.Transparency = NumberSequence.new(0.425)
  1187. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,255,25))
  1188. ssj2aura.LightEmission = 1
  1189. ssj2aura.Size = NumberSequence.new(6)
  1190. ssj2aura.Lifetime = NumberRange.new(0.5)
  1191. ssj2aura.Rate = 19
  1192. ssj2aura.ZOffset = 0
  1193. ssj2aura.Speed = NumberRange.new(10)
  1194. ssj2aura.LockedToPart = true
  1195. ssj2aura.ZOffset = -1
  1196.  
  1197. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  1198. ssj2aura2.Name = "control2"
  1199. ssj2aura2.Texture = "rbxassetid://1072507908"
  1200. ssj2aura2.Transparency = NumberSequence.new(0.555)
  1201. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  1202. ssj2aura2.LightEmission = 0.75
  1203. ssj2aura2.Size = NumberSequence.new(6)
  1204. ssj2aura2.Lifetime = NumberRange.new(0.5)
  1205. ssj2aura2.Rate = 19
  1206. ssj2aura2.ZOffset = -1
  1207. ssj2aura2.Speed = NumberRange.new(10)
  1208. ssj2aura2.LockedToPart = true
  1209. ssj2aura2.ZOffset = -1
  1210.  
  1211. available = true
  1212.  
  1213. auracan = true
  1214.  
  1215. local num = 0
  1216. local a21e = Instance.new("Part",char)
  1217. a21e.Name = "Beam"..num
  1218. a21e.Locked = true
  1219. a21e.Size = Vector3.new(5,5,5)
  1220. a21e.CanCollide = false
  1221. a21e.Position = Vector3.new(999,999,999)
  1222. a21e.BrickColor = BrickColor.new("New Yeller")
  1223. a21e.Material = "Neon"
  1224. a21e.Transparency = 0
  1225. local aa21e = Instance.new("SpecialMesh",a21e)
  1226. a21e.Anchored = true
  1227. a21e.Position = hrp.Position
  1228. aa21e.MeshType = "Sphere"
  1229. aa21e.Scale = Vector3.new(1,1,1)
  1230.  
  1231. for i = 1,59 do
  1232. wait()
  1233. aa21e.Scale = aa21e.Scale + Vector3.new(1,1,1)
  1234. a21e.Transparency = a21e.Transparency + 0.03
  1235. end
  1236.  
  1237. wait(.1)
  1238.  
  1239. a21e:Remove()
  1240.  
  1241. wait()
  1242.  
  1243. hum.WalkSpeed = 60.9999999999999999999999999999
  1244. hum.JumpPower = 80.9999999999999999999999999999
  1245. hum.MaxHealth = math.huge
  1246. hum.Health = 750000
  1247.  
  1248. being = false
  1249.  
  1250. --GroundShake = false
  1251.  
  1252. fullpowerssj = true
  1253.  
  1254. normal = false
  1255.  
  1256. end
  1257. end
  1258.  
  1259. NeckC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1260. NeckC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  1261. LeftShoulderC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1262. LeftShoulderC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1263. RightShoulderC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1264. RightShoulderC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1265. LeftHipC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1266. LeftHipC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  1267. RightHipC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1268. RightHipC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  1269.  
  1270. Neck = tor["Neck"]
  1271. RightShoulder = tor["Right Shoulder"]
  1272. LeftShoulder = tor["Left Shoulder"]
  1273. RightHip = tor["Right Hip"]
  1274. LeftHip = tor["Left Hip"]
  1275. RootJoint = hrp["RootJoint"]
  1276.  
  1277. RootJointC0 = RootJoint.C0
  1278. RootJointC1 = RootJoint.C1
  1279.  
  1280. function KameWelds()
  1281. ape51.Transparency = 1
  1282. ape56.Transparency = 0
  1283. local TiltX = 0
  1284. local TiltY = 0
  1285. local TiltZ = 1.57
  1286. RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  1287. LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  1288. TiltX = 0.6
  1289. TiltY = 0
  1290. TiltZ = 0
  1291. local MoveX = 0
  1292. local MoveY = 0
  1293. local MoveZ = -0.3
  1294. RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1295. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1296. TiltX = -0.05
  1297. TiltY = 0
  1298. TiltZ = 0
  1299. MoveX = 0
  1300. MoveY = 0.1
  1301. MoveZ = 0
  1302. RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1303. LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1304. end
  1305.  
  1306. function RefreshWelds()
  1307. Neck.C0 = NeckC0
  1308. Neck.C1 = NeckC1
  1309. RightShoulder.C0 = RightShoulderC0
  1310. RightShoulder.C1 = RightShoulderC1
  1311. LeftShoulder.C0 = LeftShoulderC0
  1312. LeftShoulder.C1 = LeftShoulderC1
  1313. RightHip.C0 = RightHipC0
  1314. RightHip.C1 = RightHipC1
  1315. LeftHip.C0 = LeftHipC0
  1316. LeftHip.C1 = LeftHipC1
  1317. RootJoint.C0 = RootJointC0
  1318. RootJoint.C1 = RootJointC1
  1319. end
  1320.  
  1321. GroundWave2 = function()
  1322. local HandCF = char["Beam1"].CFrame * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  1323. Colors = {"Medium blue", "Medium blue"}
  1324. if fullpowerssj == true then
  1325. Colors = {"Deep orange", "Deep orange"}
  1326. end
  1327. if kaioken == true then
  1328. Colors = {"Persimmon", "Persimmon"}
  1329. end
  1330. if limitbreaker == true then
  1331. Colors = {"Bright red", "Bright red"}
  1332. end
  1333. local wave3 = Instance.new("Part", char)
  1334. wave3.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1335. wave3.Anchored = true
  1336. wave3.Name = "Wave"
  1337. wave3.CanCollide = false
  1338. wave3.Locked = true
  1339. wave3.Size = Vector3.new(1, 1, 1)
  1340. wave3.TopSurface = "Smooth"
  1341. wave3.BottomSurface = "Smooth"
  1342. wave3.Transparency = 0.35
  1343. wave3.CFrame = HandCF
  1344. wm1 = Instance.new("SpecialMesh", wave3)
  1345. wm1.MeshId = "rbxassetid://3270017"
  1346. coroutine.wrap(function()
  1347. for i = 1, 30, 1 do
  1348. wm1.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1349. wave3.Size = wm1.Scale
  1350. wave3.CFrame = HandCF
  1351. wave3.Transparency = i/30
  1352. wait()
  1353. end
  1354. wait()
  1355. wave3:Destroy()
  1356. end)()
  1357. end
  1358. GroundWave3 = function()
  1359. local HandCF = char["Beam1"].CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  1360. Colors = {"Medium blue", "Medium blue"}
  1361. if fullpowerssj == true then
  1362. Colors = {"Deep orange", "Deep orange"}
  1363. end
  1364. if kaioken == true then
  1365. Colors = {"Persimmon", "Persimmon"}
  1366. end
  1367. if limitbreaker == true then
  1368. Colors = {"Bright red", "Bright red"}
  1369. end
  1370. local wave2 = Instance.new("Part", char)
  1371. wave2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1372. wave2.Anchored = true
  1373. wave2.Name = "Wave"
  1374. wave2.CanCollide = false
  1375. wave2.Locked = true
  1376. wave2.Size = Vector3.new(1, 1, 1)
  1377. wave2.TopSurface = "Smooth"
  1378. wave2.BottomSurface = "Smooth"
  1379. wave2.Transparency = 0.35
  1380. wave2.CFrame = HandCF
  1381. wm2 = Instance.new("SpecialMesh", wave2)
  1382. wm2.MeshId = "rbxassetid://3270017"
  1383. coroutine.wrap(function()
  1384. for i = 1, 30, 1 do
  1385. wm2.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1386. wave2.Size = wm2.Scale
  1387. wave2.CFrame = HandCF
  1388. wave2.Transparency = i/30
  1389. wait()
  1390. end
  1391. wait()
  1392. wave2:Destroy()
  1393. end)()
  1394. end
  1395. GroundWave4 = function()
  1396. local HandCF = char["Beam1"].CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  1397. Colors = {"Medium blue", "Medium blue"}
  1398. if fullpowerssj == true then
  1399. Colors = {"Deep orange", "Deep orange"}
  1400. end
  1401. if kaioken == true then
  1402. Colors = {"Persimmon", "Persimmon"}
  1403. end
  1404. if limitbreaker == true then
  1405. Colors = {"Bright red", "Bright red"}
  1406. end
  1407. local wave1 = Instance.new("Part", char)
  1408. wave1.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  1409. wave1.Anchored = true
  1410. wave1.Name = "Wave"
  1411. wave1.CanCollide = false
  1412. wave1.Locked = true
  1413. wave1.Size = Vector3.new(1, 1, 1)
  1414. wave1.TopSurface = "Smooth"
  1415. wave1.BottomSurface = "Smooth"
  1416. wave1.Transparency = 0.35
  1417. wave1.CFrame = HandCF
  1418. wm3 = Instance.new("SpecialMesh", wave1)
  1419. wm3.MeshId = "rbxassetid://3270017"
  1420. coroutine.wrap(function()
  1421. for i = 1,30 do
  1422. wm3.Scale = Vector3.new(5 + i*5.2, 3 + i*5.2, 5)
  1423. wave1.Size = wm3.Scale
  1424. wave1.CFrame = HandCF
  1425. wave1.Transparency = i/30
  1426. wait()
  1427. end
  1428. wait()
  1429. wave1:Destroy()
  1430. end)()
  1431. end
  1432.  
  1433. --[[function genkibomb()
  1434.  
  1435. if attacking == false then
  1436. attacking = true
  1437.  
  1438. local c = char
  1439.  
  1440. local omg1 = c.Torso["Left Shoulder"].C0
  1441. local omg2 = c.Torso["Right Shoulder"].C0
  1442.  
  1443. hrp.Anchored = true
  1444. hum.PlatformStand = true
  1445.  
  1446. c.Torso["Left Shoulder"].C0 = c.Torso["Left Shoulder"].C0 * CFrame.new(-0,0.5,0) * CFrame.Angles(0,0,math.rad(-180))
  1447. c.Torso["Right Shoulder"].C0 = c.Torso["Right Shoulder"].C0 * CFrame.new(0,0.5,0) * CFrame.Angles(0,0,math.rad(180))
  1448.  
  1449. local num = 0
  1450. local a21e = Instance.new("Part",char)
  1451. a21e.Name = "Beam"
  1452. a21e.Locked = true
  1453. a21e.Size = Vector3.new(5,5,5)
  1454. a21e.CanCollide = false
  1455. a21e.BrickColor = BrickColor.new("Medium blue")
  1456. a21e.Material = "Neon"
  1457. a21e.Transparency = 1
  1458. local aa21e = Instance.new("SpecialMesh",a21e)
  1459. a21e.Anchored = true
  1460. a21e.Position = hrp.Position + Vector3.new(0,70,0)
  1461. aa21e.MeshType = "Sphere"
  1462. aa21e.Scale = Vector3.new(0.15,0.15,0.15)
  1463.  
  1464. local z142 = Instance.new("Sound",char)
  1465. z142.Volume = 10
  1466. z142.Looped = false
  1467. z142.SoundId = "rbxassetid://919429799"
  1468. z142:Play()
  1469.  
  1470. for i = 1,99 do
  1471. wait()
  1472. aa21e.Scale = aa21e.Scale + Vector3.new(0.079,0.079,0.079)
  1473. a21e.Transparency = a21e.Transparency - 0.04
  1474. end
  1475.  
  1476. local ray = Ray.new(tor.CFrame.p, (mouse.Hit.p - tor.CFrame.p).unit * 299) local pos = mouse.Hit.p
  1477. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  1478.  
  1479. local distance = (tor.CFrame.p - position).magnitude
  1480.  
  1481. c.Torso["Right Shoulder"].C0 = omg2
  1482. c.Torso["Left Shoulder"].C0 = omg1
  1483.  
  1484. c.Torso["Left Shoulder"].C0 = c.Torso["Left Shoulder"].C0 * CFrame.new(-0,0,0) * CFrame.Angles(0,0,math.rad(-90))
  1485. c.Torso["Right Shoulder"].C0 = c.Torso["Right Shoulder"].C0 * CFrame.new(0,0,0) * CFrame.Angles(0,0,math.rad(90))
  1486.  
  1487. for i = 1,259 do
  1488. wait()
  1489. a21e.CFrame = a21e.CFrame:lerp(CFrame.new(pos), i/259)
  1490.  
  1491. for _,childs in pairs(game.Workspace:GetChildren()) do
  1492. if childs.Name ~= char.Name then
  1493. if childs:FindFirstChild("HumanoidRootPart") and childs:FindFirstChild("Humanoid") then
  1494. if (tor.Position-childs.HumanoidRootPart.Position).magnitude <= distance then
  1495.  
  1496. z142:Remove()
  1497.  
  1498. childs:Destroy()
  1499.  
  1500. num = num + 1
  1501. local a21 = Instance.new("Part",char)
  1502. a21.Name = "Beam"..num
  1503. a21.Locked = true
  1504. a21.Size = Vector3.new(1,1,1)
  1505. a21.CanCollide = false
  1506. a21.Position = Vector3.new(999,999,999)
  1507. a21.BrickColor = BrickColor.new("Medium blue")
  1508. a21.Material = "Neon"
  1509. a21.Transparency = 0
  1510. local aa21 = Instance.new("SpecialMesh",a21)
  1511. a21.Anchored = true
  1512. a21.Position = part.Position
  1513. aa21.MeshType = "Sphere"
  1514. aa21.Scale = Vector3.new(1,1,1)
  1515.  
  1516. GroundWave2()
  1517. GroundWave3()
  1518. GroundWave4()
  1519.  
  1520. for i = 1,50 do
  1521. wait()
  1522. char["Beam1"].Mesh.Scale = char["Beam1"].Mesh.Scale + Vector3.new(5,5,5)
  1523. char["Beam1"].Transparency = char["Beam1"].Transparency + 0.02
  1524. end
  1525. end
  1526.  
  1527. c.Torso["Right Shoulder"].C0 = omg2
  1528. c.Torso["Left Shoulder"].C0 = omg1
  1529.  
  1530. hrp.Anchored = false
  1531. hum.PlatformStand = false
  1532.  
  1533. attacking = false
  1534.  
  1535. end
  1536. end
  1537.  
  1538. game:GetService("Debris"):AddItem(a21e,0.9)
  1539. end
  1540. end
  1541. end
  1542. end--]]
  1543.  
  1544. function KiWelds()
  1545. --Neck.C0 = NeckC0 * CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.4
  1546. --RootJoint.C0 = RootJointC0 * CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(0)), 0.2
  1547. RightShoulder.C0 = --[[RightShoulderC0 *--]] CFrame.new(1.2,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(-30)), 0.2
  1548. LeftShoulder.C0 = --[[LeftShoulderC0 *--]] CFrame.new(-1.2,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(30)), 0.2
  1549. LeftHip.C0 = CFrame.new(-0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-10)), 0.4
  1550. RightHip.C0 = CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(10)), 0.4
  1551. wait(1)
  1552. Neck.C0 = NeckC0 * CFrame.new(0,0,.2)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(0)), 0.4
  1553. RootJoint.C0 = RootJointC0 * CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(20), math.rad(0), math.rad(0)), 0.2
  1554. RightShoulder.C0 = RightShoulderC0 * CFrame.new(0,0.2,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(120)), 0.2
  1555. LeftShoulder.C0 = LeftShoulderC0 * CFrame.new(-0,0.2,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(-120)), 0.2
  1556. LeftHip.C0 = CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-10)), 0.4
  1557. RightHip.C0 = CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(10)), 0.4
  1558. end
  1559.  
  1560. function SuperWelds()
  1561. --Neck.C0 = NeckC0 * CFrame.new(0,0,.2)*CFrame.Angles(math.rad(50),math.rad(0),math.rad(0)), 0.4
  1562. --RootJoint.C0 = RootJointC0 * CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.5
  1563. RightShoulder.C0 = --[[RightShoulderC0 *--]] CFrame.new(0.8,0.85,-0.6)*CFrame.Angles(math.rad(110),math.rad(0),math.rad(-90)), 0.5
  1564. LeftShoulder.C0 = --[[LeftShoulderC0 *--]] CFrame.new(-0.8,0.85,-.6)*CFrame.Angles(math.rad(90),math.rad(0),math.rad(90)), 0.5
  1565. end
  1566.  
  1567. function kamehameha()
  1568.  
  1569. if attacking == false then
  1570. attacking = true
  1571.  
  1572. local beamgo = 6
  1573. local beamgo1 = 1
  1574. local enabled = true
  1575. local sizeup = -25
  1576.  
  1577. RightShoulder.MaxVelocity = 0
  1578. RightShoulder.CurrentAngle = 0
  1579. LeftShoulder.MaxVelocity = 0
  1580. LeftShoulder.CurrentAngle = 0
  1581.  
  1582. chatfunc("Kame...")
  1583.  
  1584. local TiltX = 0
  1585. local TiltY = 0
  1586. local TiltZ = 0.85
  1587. RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  1588. LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  1589. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltX,TiltY,TiltZ + 0.7)
  1590. TiltX = 0.6
  1591. TiltY = 0
  1592. TiltZ = 0
  1593. local MoveX = 0
  1594. local MoveY = 0
  1595. local MoveZ = -0.3
  1596. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltZ,TiltY,TiltZ)
  1597. RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1598. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1599. TiltX = -0.05
  1600. TiltY = 0
  1601. TiltZ = 0
  1602. MoveX = 0
  1603. MoveY = 0.1
  1604. MoveZ = 0
  1605. RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1606. LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1607.  
  1608. wait(.02)
  1609.  
  1610. local partt2 = Instance.new("Part",char)
  1611. partt2.Name = "kame"
  1612. partt2.Position = Vector3.new(999,999,999)
  1613. partt2.Transparency = 1
  1614. partt2.Material = Enum.Material.Neon
  1615. partt2.BrickColor = BrickColor.new("Medium blue")
  1616. if kaioken == true then
  1617. partt2.BrickColor = BrickColor.new("Persimmon")
  1618. end
  1619. partt2.CanCollide = false
  1620. partt2.Anchored = false
  1621. partt2.Size = Vector3.new(0.13,0.13,0.13)
  1622. local partmesh = Instance.new("BlockMesh",partt2)
  1623. partmesh.Scale = Vector3.new(13.4,13.4,13.4)
  1624. hum.PlatformStand = true
  1625. local partweld2 = Instance.new("Weld")
  1626. partweld2.Part0 = tor
  1627. partweld2.Part1 = partt2
  1628. partweld2.Parent = partt2
  1629. partweld2.C0 = CFrame.new(-0,-.28,-1.37)
  1630. hrp.Anchored = true
  1631. wait(.01)
  1632. tor.Anchored = true
  1633. kamehameha3 = true
  1634.  
  1635. wait(1.92)
  1636.  
  1637. chatfunc("Hame...")
  1638.  
  1639. wait(1.59)
  1640.  
  1641. local Gyro = Instance.new("BodyGyro")
  1642. Gyro.Parent = tor
  1643. Gyro.D = 50
  1644. Gyro.cframe = tor.CFrame
  1645. Gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1646. local Position = Instance.new("BodyPosition")
  1647. Position.Parent = tor
  1648. Position.position = tor.Position
  1649. Position.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1650. hum.PlatformStand = true
  1651. tor.Anchored = true
  1652.  
  1653. RefreshWelds()
  1654.  
  1655. chatfunc("HA!")
  1656.  
  1657. kamehit2:Play()
  1658.  
  1659. partt2:Remove()
  1660.  
  1661. KameWelds()
  1662.  
  1663.  
  1664. local ray = Ray.new(tor.CFrame.p, (mouse.Hit.p - tor.CFrame.p).unit * 299) local pos = mouse.Hit.p
  1665. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  1666.  
  1667. local new = Instance.new
  1668. local v3 = Vector3.new
  1669. local bc = BrickColor.new
  1670.  
  1671. local a1 = new("Part",char)
  1672. a1.Name = "Beam"
  1673. a1.Anchored = true
  1674. a1.Size = v3(6,6,6)
  1675. a1.CanCollide = false
  1676. a1.Locked = true
  1677. a1.Position = v3(999,999,999)
  1678. a1.BrickColor = bc("Medium blue")
  1679. if kaioken == true then
  1680. a1.BrickColor = BrickColor.new("Persimmon")
  1681. end
  1682. a1.Material = "Neon"
  1683. a1.Transparency = 0
  1684.  
  1685. kamehameha3 = false
  1686.  
  1687. local num = 0
  1688.  
  1689. Gyro.CFrame = CFrame.new(tor.Position, pos)
  1690.  
  1691. tor.CFrame = CFrame.new(tor.Position, pos)
  1692.  
  1693. local distance = (tor.CFrame.p - position).magnitude
  1694. a1.Size = Vector3.new(1.7,1.7,distance)
  1695. a1.CFrame = CFrame.new(tor.CFrame.p, position) * CFrame.new(0, 0.25, -distance / 2)
  1696.  
  1697. --[[repeat
  1698. wait()
  1699.  
  1700. a1.Size = a1.Size - v3(0.05,0.05,0)
  1701.  
  1702. until
  1703. a1.Size.y < 0.05--]]
  1704.  
  1705. game:GetService("Debris"):AddItem(a1,0.4)
  1706.  
  1707. if part then
  1708.  
  1709.  
  1710. kamehit:Play()
  1711.  
  1712.  
  1713. if part.Parent:findFirstChild("NewPart") == nil and part.Size.x < 500 and part.Parent:findFirstChild("Wave") == nil then
  1714.  
  1715.  
  1716.  
  1717. if part.Parent:IsA("Accessory") then
  1718. part.Parent.Parent:BreakJoints()
  1719. end
  1720. if part.Parent:IsA("Model") then
  1721. part.Parent:BreakJoints()
  1722. end
  1723. part:Destroy()
  1724. if enabled == true then
  1725. enabled = false
  1726. num = num + 1
  1727. local a21 = new("Part",char)
  1728. a21.Name = "Beam"..num
  1729. a21.Locked = true
  1730. a21.Size = v3(1,1,1)
  1731. a21.CanCollide = false
  1732. a21.Position = v3(999,999,999)
  1733. a21.BrickColor = bc("Medium blue")
  1734. if kaioken == true then
  1735. a21.BrickColor = BrickColor.new("Persimmon")
  1736. end
  1737. a21.Material = "Neon"
  1738. a21.Transparency = 0
  1739. local aa21 = new("SpecialMesh",a21)
  1740. a21.Anchored = true
  1741. a21.Position = part.Position
  1742. aa21.MeshType = "Sphere"
  1743. aa21.Scale = v3(1,1,1)
  1744.  
  1745. GroundWave2()
  1746. GroundWave3()
  1747. GroundWave4()
  1748.  
  1749. for i = 1,50 do
  1750. wait()
  1751. char["Beam1"].Mesh.Scale = char["Beam1"].Mesh.Scale + v3(5,5,5)
  1752. char["Beam1"].Transparency = char["Beam1"].Transparency + 0.02
  1753. end
  1754. enabled = true
  1755. char["Beam1"]:Destroy()
  1756.  
  1757. end
  1758. end
  1759.  
  1760. end
  1761.  
  1762. wait(.5)
  1763.  
  1764. ape51.Transparency = 0
  1765. ape56.Transparency = 1
  1766.  
  1767. hum.PlatformStand = false
  1768. char.Torso.Anchored = false
  1769. hrp.Anchored = false
  1770.  
  1771. RightShoulder.MaxVelocity = 0.15
  1772. LeftShoulder.MaxVelocity = 0.15
  1773.  
  1774. RefreshWelds()
  1775.  
  1776. Gyro:Remove()
  1777.  
  1778. Position:Remove()
  1779.  
  1780. attacking = false
  1781. end
  1782. end
  1783.  
  1784. function superkamehameha()
  1785.  
  1786. if attacking == false then
  1787. attacking = true
  1788.  
  1789. if assj3 == false then
  1790.  
  1791. assj3 = true
  1792.  
  1793. local beamgo = 6
  1794. local beamgo1 = 1
  1795. local enabled = true
  1796. local sizeup = -25
  1797.  
  1798. RightShoulder.MaxVelocity = 0
  1799. RightShoulder.CurrentAngle = 0
  1800. LeftShoulder.MaxVelocity = 0
  1801. LeftShoulder.CurrentAngle = 0
  1802.  
  1803. if ssj1 == true and ssj3 == false then
  1804. chatfunc("This is the super...")
  1805.  
  1806. wait(2.9)
  1807. end
  1808.  
  1809. if fullpowerssj == true then
  1810. hed.face.Texture = "rbxassetid://1177818030"
  1811. end
  1812.  
  1813. if ssj3 == true then
  1814. chatfunc("YOU!!!!!")
  1815.  
  1816. wait(2.9)
  1817. end
  1818.  
  1819. local TiltX = 0
  1820. local TiltY = 0
  1821. local TiltZ = 0.85
  1822. RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  1823. LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  1824. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltX,TiltY,TiltZ + 0.7)
  1825. TiltX = 0.6
  1826. TiltY = 0
  1827. TiltZ = 0
  1828. local MoveX = 0
  1829. local MoveY = 0
  1830. local MoveZ = -0.3
  1831. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltZ,TiltY,TiltZ)
  1832. RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1833. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1834. TiltX = -0.05
  1835. TiltY = 0
  1836. TiltZ = 0
  1837. MoveX = 0
  1838. MoveY = 0.1
  1839. MoveZ = 0
  1840. RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1841. LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  1842.  
  1843. chatfunc("KAME...")
  1844.  
  1845. local partt2 = Instance.new("Part",char)
  1846. partt2.Name = "kame"
  1847. partt2.Position = Vector3.new(999,999,999)
  1848. partt2.Transparency = 1
  1849. partt2.Material = Enum.Material.Neon
  1850. partt2.BrickColor = BrickColor.new("Steel blue")
  1851. if fullpowerssj == true then
  1852. partt2.BrickColor = BrickColor.new("Daisy orange")
  1853. end
  1854. if ssj3 == true then
  1855. partt2.Color = Color3.fromRGB(229, 255, 82)
  1856. end
  1857. partt2.CanCollide = false
  1858. partt2.Anchored = false
  1859. partt2.Size = Vector3.new(0.134,0.134,0.134)
  1860. local partmesh = Instance.new("BlockMesh",partt2)
  1861. partmesh.Scale = Vector3.new(13.4,13.4,13.4)
  1862. hum.PlatformStand = true
  1863. local partweld2 = Instance.new("Weld")
  1864. partweld2.Part0 = tor
  1865. partweld2.Part1 = partt2
  1866. partweld2.Parent = partt2
  1867. partweld2.C0 = CFrame.new(-0,-.28,-1.37)
  1868. hrp.Anchored = true
  1869. wait(.01)
  1870. tor.Anchored = true
  1871. kamehameha3 = true
  1872.  
  1873. wait(4.2)
  1874.  
  1875. chatfunc("HAME...")
  1876.  
  1877. if ssj3 == true then
  1878. chatfunc("GRRRR!!!!")
  1879. end
  1880.  
  1881. kamehameha3 = false
  1882. partt2:Remove()
  1883. hum.PlatformStand = false
  1884. hrp.Anchored = false
  1885. tor.Anchored = false
  1886. local partt3 = Instance.new("Part",char)
  1887. partt3.Name = "hame"
  1888. partt3.Position = Vector3.new(999,999,999)
  1889. partt3.Transparency = 0
  1890. partt3.Material = Enum.Material.Neon
  1891. partt3.BrickColor = BrickColor.new("Medium blue")
  1892. if fullpowerssj == true then
  1893. partt3.BrickColor = BrickColor.new("Daisy orange")
  1894. end
  1895. if ssj3 == true then
  1896. partt3.Color = Color3.fromRGB(229, 255, 82)
  1897. end
  1898. partt3.CanCollide = false
  1899. partt3.Anchored = false
  1900. partt3.Size = Vector3.new(0.149,0.149,0.149)
  1901. local partmes = Instance.new("BlockMesh",partt3)
  1902. partmes.Scale = Vector3.new(13.4,13.4,13.4)
  1903. hum.PlatformStand = true
  1904. local partweld3 = Instance.new("Weld")
  1905. partweld3.Part0 = tor
  1906. partweld3.Part1 = partt3
  1907. partweld3.Parent = partt3
  1908. partweld3.C0 = CFrame.new(-0,-.28,-1.37)
  1909. hrp.Anchored = true
  1910. wait(.01)
  1911. tor.Anchored = true
  1912. kamehameha4 = true
  1913.  
  1914. wait(2.3)
  1915.  
  1916. chatfunc("GRR!!")
  1917.  
  1918. if ssj3 == true then
  1919. chatfunc("HAME...")
  1920. end
  1921.  
  1922. partt3.BrickColor = BrickColor.new("Sand blue")
  1923. if fullpowerssj == true then
  1924. partt3.BrickColor = BrickColor.new("Cool yellow")
  1925. end
  1926. if ssj3 == true then
  1927. partt3.Color = Color3.fromRGB(229, 255, 82)
  1928. end
  1929.  
  1930. if fullpowerssj == true then
  1931. wait(1.84)
  1932. chatfunc("YOU FOOL!!")
  1933. end
  1934.  
  1935. wait(2.31)
  1936.  
  1937. local Gyro = Instance.new("BodyGyro")
  1938. Gyro.Parent = tor
  1939. Gyro.D = 50
  1940. Gyro.cframe = tor.CFrame
  1941. Gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  1942. local Position = Instance.new("BodyPosition")
  1943. Position.Parent = tor
  1944. Position.position = tor.Position
  1945. Position.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  1946. hum.PlatformStand = true
  1947. tor.Anchored = true
  1948.  
  1949. RefreshWelds()
  1950.  
  1951. chatfunc("HAAAA!!!!")
  1952.  
  1953. if ssj3 == true then
  1954. chatfunc("HAAAAAAAAAAA!!!!!!!!")
  1955. end
  1956.  
  1957. kamehit2:Play()
  1958.  
  1959. partt3:Remove()
  1960.  
  1961. KameWelds()
  1962.  
  1963.  
  1964. local ray = Ray.new(tor.CFrame.p, (mouse.Hit.p - tor.CFrame.p).unit * 299) local pos = mouse.Hit.p
  1965. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  1966.  
  1967. local new = Instance.new
  1968. local v3 = Vector3.new
  1969. local bc = BrickColor.new
  1970.  
  1971. local a1 = new("Part",char)
  1972. a1.Name = "Beam"
  1973. a1.Anchored = true
  1974. a1.Size = v3(6,6,6)
  1975. a1.CanCollide = false
  1976. a1.Locked = true
  1977. a1.Position = v3(999,999,999)
  1978. a1.BrickColor = bc("Sand blue")
  1979. if fullpowerssj == true then
  1980. a1.BrickColor = bc("Cool yellow")
  1981. end
  1982. if ssj3 == true then
  1983. a1.Color = Color3.fromRGB(229, 255, 82)
  1984. end
  1985. a1.Material = "Neon"
  1986. a1.Transparency = 0
  1987.  
  1988. kamehameha4 = false
  1989.  
  1990. local num = 0
  1991.  
  1992. Gyro.CFrame = CFrame.new(tor.Position, pos)
  1993.  
  1994. tor.CFrame = CFrame.new(tor.Position, pos)
  1995.  
  1996. local distance = (tor.CFrame.p - position).magnitude
  1997. a1.Size = Vector3.new(1.7,1.7,distance)
  1998. a1.CFrame = CFrame.new(tor.CFrame.p, position) * CFrame.new(0, 0.25, -distance / 2)
  1999.  
  2000. --[[repeat
  2001. wait()
  2002.  
  2003. a1.Size = a1.Size - v3(0.05,0.05,0)
  2004.  
  2005. until
  2006. a1.Size.y < 0.05--]]
  2007.  
  2008. game:GetService("Debris"):AddItem(a1,0.4)
  2009.  
  2010. if part then
  2011.  
  2012.  
  2013. kamehit:Play()
  2014.  
  2015.  
  2016. if part.Parent:findFirstChild("NewPart") == nil and part.Size.x < 500 and part.Parent:findFirstChild("Wave") == nil then
  2017.  
  2018.  
  2019.  
  2020. if part.Parent:IsA("Accessory") then
  2021. part.Parent.Parent:BreakJoints()
  2022. end
  2023. if part.Parent:IsA("Model") then
  2024. part.Parent:BreakJoints()
  2025. end
  2026. part:Destroy()
  2027. if enabled == true then
  2028. enabled = false
  2029. num = num + 1
  2030. local a21 = new("Part",char)
  2031. a21.Name = "Beam"..num
  2032. a21.Locked = true
  2033. a21.Size = v3(1,1,1)
  2034. a21.CanCollide = false
  2035. a21.Position = v3(999,999,999)
  2036. a21.BrickColor = bc("White")
  2037. if ssj3 == true then
  2038. a21.Color = Color3.fromRGB(229, 255, 82)
  2039. end
  2040. a21.Material = "Neon"
  2041. a21.Transparency = 0
  2042. local aa21 = new("SpecialMesh",a21)
  2043. a21.Anchored = true
  2044. a21.Position = part.Position
  2045. aa21.MeshType = "Sphere"
  2046. aa21.Scale = v3(1,1,1)
  2047.  
  2048. GroundWave2()
  2049. GroundWave3()
  2050. GroundWave4()
  2051.  
  2052. for i = 1,55 do
  2053. wait()
  2054. char["Beam1"].Mesh.Scale = char["Beam1"].Mesh.Scale + v3(8,8,8)
  2055. char["Beam1"].Transparency = char["Beam1"].Transparency + 0.019
  2056. end
  2057. enabled = true
  2058. GroundWave2()
  2059. GroundWave3()
  2060. GroundWave4()
  2061. wait(.4)
  2062. char["Beam1"].Transparency = 1
  2063. GroundWave2()
  2064. GroundWave3()
  2065. GroundWave4()
  2066. wait(.8)
  2067. char["Beam1"]:Destroy()
  2068.  
  2069. end
  2070. end
  2071.  
  2072. end
  2073.  
  2074. wait(.5)
  2075.  
  2076. ape51.Transparency = 0
  2077. ape56.Transparency = 1
  2078.  
  2079. if fullpowerssj == true then
  2080. hed.face.Texture = "rbxassetid://231488725"
  2081. end
  2082.  
  2083. hum.PlatformStand = false
  2084. char.Torso.Anchored = false
  2085. hrp.Anchored = false
  2086.  
  2087. RightShoulder.MaxVelocity = 0.15
  2088. LeftShoulder.MaxVelocity = 0.15
  2089.  
  2090. RefreshWelds()
  2091.  
  2092. Gyro:Remove()
  2093.  
  2094. Position:Remove()
  2095.  
  2096. attacking = false
  2097.  
  2098. assj3 = false
  2099.  
  2100. end
  2101. end
  2102. end
  2103.  
  2104. GroundWave5 = function()
  2105. local HandCF = char["Bean"].CFrame * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0))
  2106. Colors = {"Deep orange", "Deep orange"}
  2107. if ultrainstinct == true then
  2108. Colors = {"Medium blue", "Medium blue"}
  2109. end
  2110. if limitbreaker == true then
  2111. Colors = {"Bright red", "Bright red"}
  2112. end
  2113. local wave3 = Instance.new("Part", char)
  2114. wave3.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2115. wave3.Anchored = true
  2116. wave3.Name = "Wave8"
  2117. wave3.CanCollide = false
  2118. wave3.Locked = true
  2119. wave3.Size = Vector3.new(49,49,49)
  2120. wave3.TopSurface = "Smooth"
  2121. wave3.BottomSurface = "Smooth"
  2122. wave3.Transparency = 0.35
  2123. wave3.CFrame = HandCF
  2124. wm1 = Instance.new("SpecialMesh", wave3)
  2125. wm1.MeshId = "rbxassetid://3270017"
  2126. coroutine.wrap(function()
  2127. for i = 1, 25 do
  2128. wm1.Scale = Vector3.new(55 + i*25.29, 33 + i*25.29, 55)
  2129. wave3.Size = wm1.Scale
  2130. wave3.CFrame = HandCF
  2131. wave3.Transparency = i/4
  2132. wait()
  2133. end
  2134. wait()
  2135. wave3:Destroy()
  2136. end)()
  2137. end
  2138. GroundWave6 = function()
  2139. local HandCF = char["Bean"].CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  2140. Colors = {"Deep orange", "Deep orange"}
  2141. if ultrainstinct == true then
  2142. Colors = {"Medium blue", "Medium blue"}
  2143. end
  2144. if limitbreaker == true then
  2145. Colors = {"Bright red", "Bright red"}
  2146. end
  2147. local wave2 = Instance.new("Part", char)
  2148. wave2.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2149. wave2.Anchored = true
  2150. wave2.Name = "Wave9"
  2151. wave2.CanCollide = false
  2152. wave2.Locked = true
  2153. wave2.Size = Vector3.new(49,49,49)
  2154. wave2.TopSurface = "Smooth"
  2155. wave2.BottomSurface = "Smooth"
  2156. wave2.Transparency = 0.35
  2157. wave2.CFrame = HandCF
  2158. wm2 = Instance.new("SpecialMesh", wave2)
  2159. wm2.MeshId = "rbxassetid://3270017"
  2160. coroutine.wrap(function()
  2161. for i = 1, 25 do
  2162. wm2.Scale = Vector3.new(55 + i*25.29, 33 + i*25.29, 55)
  2163. wave2.Size = wm2.Scale
  2164. wave2.CFrame = HandCF
  2165. wave2.Transparency = i/4
  2166. wait()
  2167. end
  2168. wait()
  2169. wave2:Destroy()
  2170. end)()
  2171. end
  2172. GroundWave7 = function()
  2173. local HandCF = char["Bean"].CFrame * CFrame.Angles(math.rad(0), math.rad(90), math.rad(0))
  2174. Colors = {"Deep orange", "Deep orange"}
  2175. if ultrainstinct == true then
  2176. Colors = {"Medium blue", "Medium blue"}
  2177. end
  2178. if limitbreaker == true then
  2179. Colors = {"Bright red", "Bright red"}
  2180. end
  2181. local wave1 = Instance.new("Part", char)
  2182. wave1.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  2183. wave1.Anchored = true
  2184. wave1.Name = "Wave0"
  2185. wave1.CanCollide = false
  2186. wave1.Locked = true
  2187. wave1.Size = Vector3.new(49,49,49)
  2188. wave1.TopSurface = "Smooth"
  2189. wave1.BottomSurface = "Smooth"
  2190. wave1.Transparency = 0.35
  2191. wave1.CFrame = HandCF
  2192. wm3 = Instance.new("SpecialMesh", wave1)
  2193. wm3.MeshId = "rbxassetid://3270017"
  2194. coroutine.wrap(function()
  2195. for i = 1,25 do
  2196. wm3.Scale = Vector3.new(55 + i*25.29, 33 + i*25.29, 55)
  2197. wave1.Size = wm3.Scale
  2198. wave1.CFrame = HandCF
  2199. wave1.Transparency = i/4
  2200. wait()
  2201. end
  2202. wait()
  2203. wave1:Destroy()
  2204. end)()
  2205. end
  2206.  
  2207. function angrykamehameha()
  2208.  
  2209. if attacking == false then
  2210. attacking = true
  2211.  
  2212. if assj3 == false then
  2213. assj3 = true
  2214.  
  2215. local beamgo = 6
  2216. local beamgo1 = 1
  2217. local enabled = true
  2218. local sizeup = -25
  2219.  
  2220. RightShoulder.MaxVelocity = 0
  2221. RightShoulder.CurrentAngle = 0
  2222. LeftShoulder.MaxVelocity = 0
  2223. LeftShoulder.CurrentAngle = 0
  2224.  
  2225. local TiltX = 0
  2226. local TiltY = 0
  2227. local TiltZ = 0.85
  2228. RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  2229. LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  2230. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltX,TiltY,TiltZ + 0.7)
  2231. TiltX = 0.6
  2232. TiltY = 0
  2233. TiltZ = 0
  2234. local MoveX = 0
  2235. local MoveY = 0
  2236. local MoveZ = -0.3
  2237. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltZ,TiltY,TiltZ)
  2238. RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2239. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2240. TiltX = -0.05
  2241. TiltY = 0
  2242. TiltZ = 0
  2243. MoveX = 0
  2244. MoveY = 0.1
  2245. MoveZ = 0
  2246. RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2247. LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2248.  
  2249. chatfunc("Kame...")
  2250.  
  2251. local partt2 = Instance.new("Part",char)
  2252. partt2.Name = "kame"
  2253. partt2.Position = Vector3.new(999,999,999)
  2254. partt2.Transparency = 1
  2255. partt2.Material = Enum.Material.Neon
  2256. partt2.BrickColor = BrickColor.new("Medium blue")
  2257. partt2.CanCollide = false
  2258. partt2.Anchored = false
  2259. partt2.Size = Vector3.new(0.134,0.134,0.134)
  2260. local partmesh = Instance.new("BlockMesh",partt2)
  2261. partmesh.Scale = Vector3.new(13.4,13.4,13.4)
  2262. hum.PlatformStand = true
  2263. local partweld2 = Instance.new("Weld")
  2264. partweld2.Part0 = tor
  2265. partweld2.Part1 = partt2
  2266. partweld2.Parent = partt2
  2267. partweld2.C0 = CFrame.new(-0,-.28,-1.37)
  2268. hrp.Anchored = true
  2269. wait(.01)
  2270. tor.Anchored = true
  2271. kamehameha3 = true
  2272.  
  2273. wait(3.2)
  2274.  
  2275. chatfunc("Hame...")
  2276.  
  2277. kamehameha3 = false
  2278. partt2:Remove()
  2279. hum.PlatformStand = false
  2280. hrp.Anchored = false
  2281. tor.Anchored = false
  2282. local partt3 = Instance.new("Part",char)
  2283. partt3.Name = "hame"
  2284. partt3.Position = Vector3.new(999,999,999)
  2285. partt3.Transparency = 0
  2286. partt3.Material = Enum.Material.Neon
  2287. partt3.BrickColor = BrickColor.new("Sand blue")
  2288. partt3.CanCollide = false
  2289. partt3.Anchored = false
  2290. partt3.Size = Vector3.new(0.134,0.134,0.134)
  2291. local partmes = Instance.new("BlockMesh",partt3)
  2292. partmes.Scale = Vector3.new(13.4,13.4,13.4)
  2293. hum.PlatformStand = true
  2294. local partweld3 = Instance.new("Weld")
  2295. partweld3.Part0 = tor
  2296. partweld3.Part1 = partt3
  2297. partweld3.Parent = partt3
  2298. partweld3.C0 = CFrame.new(-0,-.28,-1.37)
  2299. hrp.Anchored = true
  2300. wait(.01)
  2301. tor.Anchored = true
  2302. kamehameha4 = true
  2303.  
  2304. wait(2.3)
  2305.  
  2306. chatfunc("YOU FOOL!")
  2307.  
  2308. hed.face.Texture = "rbxassetid://1177818030"
  2309.  
  2310. partt3.BrickColor = BrickColor.new("Daisy orange")
  2311.  
  2312. wait(1.31)
  2313.  
  2314. local Gyro = Instance.new("BodyGyro")
  2315. Gyro.Parent = tor
  2316. Gyro.D = 50
  2317. Gyro.cframe = tor.CFrame
  2318. Gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  2319. local Position = Instance.new("BodyPosition")
  2320. Position.Parent = tor
  2321. Position.position = tor.Position
  2322. Position.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  2323. hum.PlatformStand = true
  2324. tor.Anchored = true
  2325.  
  2326. RefreshWelds()
  2327.  
  2328. chatfunc("HAAAA!!!!")
  2329.  
  2330. kamehit2:Play()
  2331.  
  2332. partt3:Remove()
  2333.  
  2334. KameWelds()
  2335.  
  2336.  
  2337. local ray = Ray.new(tor.CFrame.p, (mouse.Hit.p - tor.CFrame.p).unit * 299) local pos = mouse.Hit.p
  2338. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  2339.  
  2340. local new = Instance.new
  2341. local v3 = Vector3.new
  2342. local bc = BrickColor.new
  2343.  
  2344. local a1 = new("Part",char)
  2345. a1.Name = "Beam"
  2346. a1.Anchored = true
  2347. a1.Size = v3(6,6,6)
  2348. a1.CanCollide = false
  2349. a1.Locked = true
  2350. a1.Position = v3(999,999,999)
  2351. a1.BrickColor = bc("Daisy orange")
  2352. a1.Material = "Neon"
  2353. a1.Transparency = 0
  2354.  
  2355. kamehameha4 = false
  2356.  
  2357. local num = 0
  2358.  
  2359. Gyro.CFrame = CFrame.new(tor.Position, pos)
  2360.  
  2361. tor.CFrame = CFrame.new(tor.Position, pos)
  2362.  
  2363. local distance = (tor.CFrame.p - position).magnitude
  2364. a1.Size = Vector3.new(1.7,1.7,distance)
  2365. a1.CFrame = CFrame.new(tor.CFrame.p, position) * CFrame.new(0, 0.25, -distance / 2)
  2366.  
  2367. --[[repeat
  2368. wait()
  2369.  
  2370. a1.Size = a1.Size - v3(0.05,0.05,0)
  2371.  
  2372. until
  2373. a1.Size.y < 0.05--]]
  2374.  
  2375. game:GetService("Debris"):AddItem(a1,0.4)
  2376.  
  2377. if part then
  2378.  
  2379.  
  2380. kamehit:Play()
  2381.  
  2382.  
  2383. if part.Parent:findFirstChild("NewPart") == nil and part.Size.x < 500 and part.Parent:findFirstChild("Wave") == nil then
  2384.  
  2385.  
  2386.  
  2387. if part.Parent:IsA("Accessory") then
  2388. part.Parent.Parent:BreakJoints()
  2389. end
  2390. if part.Parent:IsA("Model") then
  2391. part.Parent:BreakJoints()
  2392. end
  2393. part:Destroy()
  2394. if enabled == true then
  2395. enabled = false
  2396. num = num + 1
  2397. local a21 = new("Part",char)
  2398. a21.Name = "Bean"
  2399. a21.Locked = true
  2400. a21.Size = v3(1,1,1)
  2401. a21.CanCollide = false
  2402. a21.Position = v3(999,999,999)
  2403. a21.BrickColor = bc("Daisy orange")
  2404. a21.Material = "Neon"
  2405. a21.Transparency = 0
  2406. local aa21 = new("SpecialMesh",a21)
  2407. a21.Anchored = true
  2408. a21.Position = part.Position
  2409. aa21.MeshType = "Sphere"
  2410. aa21.Scale = v3(1,1,1)
  2411.  
  2412. local a21 = new("Part",char)
  2413. a21.Name = "Beam"..num
  2414. a21.Locked = true
  2415. a21.Size = v3(1,1,1)
  2416. a21.CanCollide = false
  2417. a21.Position = v3(999,999,999)
  2418. a21.BrickColor = bc("Cool yellow")
  2419. a21.Material = "Neon"
  2420. a21.Transparency = 0
  2421. local aa21 = new("SpecialMesh",a21)
  2422. a21.Anchored = true
  2423. a21.Position = part.Position
  2424. aa21.MeshType = "Sphere"
  2425. aa21.Scale = v3(1,1,1)
  2426.  
  2427. GroundWave5()
  2428. GroundWave6()
  2429. GroundWave7()
  2430. GroundWave5()
  2431. GroundWave6()
  2432. GroundWave7()
  2433.  
  2434. GroundWave2()
  2435. GroundWave3()
  2436. GroundWave4()
  2437. GroundWave2()
  2438. GroundWave3()
  2439. GroundWave4()
  2440.  
  2441. wait(.4)
  2442.  
  2443. for i = 1,55 do
  2444. wait()
  2445. char["Bean"].Mesh.Scale = char["Bean"].Mesh.Scale + v3(7,7,7)
  2446. char["Bean"].Transparency = char["Bean"].Transparency + 0.019
  2447. char["Beam1"].Mesh.Scale = char["Beam1"].Mesh.Scale + v3(5,5,5)
  2448. char["Beam1"].Transparency = char["Beam1"].Transparency + 0.02
  2449. end
  2450. enabled = true
  2451. GroundWave5()
  2452. GroundWave6()
  2453. GroundWave7()
  2454. GroundWave5()
  2455. GroundWave6()
  2456. GroundWave7()
  2457.  
  2458. GroundWave2()
  2459. GroundWave3()
  2460. GroundWave4()
  2461. GroundWave2()
  2462. GroundWave3()
  2463. GroundWave4()
  2464.  
  2465. char["Beam1"].Transparency = 1
  2466.  
  2467. GroundWave5()
  2468. GroundWave6()
  2469. GroundWave7()
  2470. GroundWave5()
  2471. GroundWave6()
  2472. GroundWave7()
  2473.  
  2474. GroundWave2()
  2475. GroundWave3()
  2476. GroundWave4()
  2477. GroundWave2()
  2478. GroundWave3()
  2479. GroundWave4()
  2480. wait(1)
  2481. char["Beam1"]:Destroy()
  2482. char["Bean"]:Destroy()
  2483.  
  2484. end
  2485. end
  2486.  
  2487. end
  2488.  
  2489. wait(.5)
  2490.  
  2491. ape51.Transparency = 0
  2492. ape56.Transparency = 1
  2493.  
  2494. hum.PlatformStand = false
  2495. char.Torso.Anchored = false
  2496. hrp.Anchored = false
  2497.  
  2498. RightShoulder.MaxVelocity = 0.15
  2499. LeftShoulder.MaxVelocity = 0.15
  2500.  
  2501. RefreshWelds()
  2502.  
  2503. Gyro:Remove()
  2504.  
  2505. Position:Remove()
  2506.  
  2507. attacking = false
  2508.  
  2509. wait(0.5)
  2510.  
  2511. hed.face.Texture = "rbxassetid://231488725"
  2512.  
  2513. assj3 = false
  2514.  
  2515. end
  2516. end;end
  2517.  
  2518. function ultrakamehameha()
  2519.  
  2520. if attacking == false then
  2521. attacking = true
  2522.  
  2523. if assj3 == false then
  2524. assj3 = true
  2525.  
  2526. local beamgo = 6
  2527. local beamgo1 = 1
  2528. local enabled = true
  2529. local sizeup = -25
  2530.  
  2531. RightShoulder.MaxVelocity = 0
  2532. RightShoulder.CurrentAngle = 0
  2533. LeftShoulder.MaxVelocity = 0
  2534. LeftShoulder.CurrentAngle = 0
  2535.  
  2536. --chatfunc("He was my friend, and you took him away. I'll never let you do that again! NEVER!!")
  2537.  
  2538. local TiltX = 0
  2539. local TiltY = 0
  2540. local TiltZ = 0.85
  2541. RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  2542. LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  2543. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltX,TiltY,TiltZ + 0.7)
  2544. TiltX = 0.6
  2545. TiltY = 0
  2546. TiltZ = 0
  2547. local MoveX = 0
  2548. local MoveY = 0
  2549. local MoveZ = -0.3
  2550. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltZ,TiltY,TiltZ)
  2551. RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2552. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2553. TiltX = -0.05
  2554. TiltY = 0
  2555. TiltZ = 0
  2556. MoveX = 0
  2557. MoveY = 0.1
  2558. MoveZ = 0
  2559. RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2560. LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2561.  
  2562. local partt2 = Instance.new("Part",char)
  2563. partt2.Name = "kame"
  2564. partt2.Position = Vector3.new(999,999,999)
  2565. partt2.Transparency = 1
  2566. partt2.Material = Enum.Material.Neon
  2567. partt2.BrickColor = BrickColor.new("Sand blue")
  2568. if limitbreaker == true then
  2569. partt2.Color = Color3.fromRGB(255, 19, 70)
  2570. end
  2571. partt2.CanCollide = false
  2572. partt2.Anchored = false
  2573. partt2.Size = Vector3.new(0.20,0.20,0.20)
  2574. local partmesh = Instance.new("BlockMesh",partt2)
  2575. partmesh.Scale = Vector3.new(20,20,20)
  2576. hum.PlatformStand = true
  2577. local partweld2 = Instance.new("Weld")
  2578. partweld2.Part0 = tor
  2579. partweld2.Part1 = partt2
  2580. partweld2.Parent = partt2
  2581. partweld2.C0 = CFrame.new(-0,-.28,-1.37)
  2582. hrp.Anchored = true
  2583. wait(.01)
  2584. tor.Anchored = true
  2585. kamehameha3 = true
  2586.  
  2587. wait(1.2)
  2588.  
  2589. chatfunc("Kamehame...")
  2590.  
  2591. kamehameha3 = false
  2592. partt2:Remove()
  2593. hum.PlatformStand = false
  2594. hrp.Anchored = false
  2595. tor.Anchored = false
  2596. local partt3 = Instance.new("Part",char)
  2597. partt3.Name = "hame"
  2598. partt3.Position = Vector3.new(999,999,999)
  2599. partt3.Transparency = 0.6
  2600. partt3.Material = Enum.Material.Neon
  2601. partt3.BrickColor = BrickColor.new("Medium blue")
  2602. if limitbreaker == true then
  2603. partt3.Color = Color3.fromRGB(240, 17, 66)
  2604. end
  2605. if limitbreaker == true then
  2606. partt3.Transparency = 0
  2607. end
  2608. partt3.CanCollide = false
  2609. partt3.Anchored = false
  2610. partt3.Size = Vector3.new(0.20,0.20,0.20)
  2611. local partmes = Instance.new("BlockMesh",partt3)
  2612. partmes.Scale = Vector3.new(20,20,20)
  2613. hum.PlatformStand = true
  2614. local partweld3 = Instance.new("Weld")
  2615. partweld3.Part0 = tor
  2616. partweld3.Part1 = partt3
  2617. partweld3.Parent = partt3
  2618. partweld3.C0 = CFrame.new(-0,-.28,-1.37)
  2619. hrp.Anchored = true
  2620. wait(.01)
  2621. tor.Anchored = true
  2622. kamehameha4 = true
  2623.  
  2624. wait(1.3)
  2625.  
  2626. partt3.BrickColor = BrickColor.new("Steel blue")
  2627. if limitbreaker == true then
  2628. partt3.Color = Color3.fromRGB(230, 16, 66)
  2629. end
  2630.  
  2631. wait(0.31)
  2632.  
  2633. kamehameha4 = false
  2634.  
  2635. local Gyro = Instance.new("BodyGyro")
  2636. Gyro.Parent = tor
  2637. Gyro.D = 50
  2638. Gyro.cframe = tor.CFrame
  2639. Gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  2640. local Position = Instance.new("BodyPosition")
  2641. Position.Parent = tor
  2642. Position.position = tor.Position
  2643. Position.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  2644. hum.PlatformStand = true
  2645. tor.Anchored = true
  2646.  
  2647. RefreshWelds()
  2648.  
  2649. chatfunc("HAAAAAAAAAA!!!!!")
  2650.  
  2651. kamehit2:Play()
  2652.  
  2653. kamehameha4 = false
  2654.  
  2655. partt3.Transparency = 1
  2656.  
  2657. KameWelds()
  2658.  
  2659.  
  2660. local ray = Ray.new(tor.CFrame.p, (mouse.Hit.p - tor.CFrame.p).unit * 299) local pos = mouse.Hit.p
  2661. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  2662.  
  2663. local new = Instance.new
  2664. local v3 = Vector3.new
  2665. local bc = BrickColor.new
  2666.  
  2667. local a1 = new("Part",char)
  2668. a1.Name = "Beam"
  2669. a1.Anchored = true
  2670. a1.Size = v3(6,6,6)
  2671. a1.CanCollide = false
  2672. a1.Locked = true
  2673. a1.Position = v3(999,999,999)
  2674. a1.BrickColor = bc("Steel blue")
  2675. if limitbreaker == true then
  2676. a1.Color = Color3.fromRGB(230, 16, 66)
  2677. end
  2678. a1.Material = "Neon"
  2679. a1.Transparency = 0
  2680.  
  2681. local num = 0
  2682.  
  2683. Gyro.CFrame = CFrame.new(tor.Position, pos)
  2684.  
  2685. tor.CFrame = CFrame.new(tor.Position, pos)
  2686.  
  2687. local distance = (tor.CFrame.p - position).magnitude
  2688. a1.Size = Vector3.new(5,5,distance)
  2689. a1.CFrame = CFrame.new(tor.CFrame.p, position) * CFrame.new(0, 0.25, -distance / 2)
  2690.  
  2691. --[[repeat
  2692. wait()
  2693.  
  2694. a1.Size = a1.Size - v3(0.05,0.05,0)
  2695.  
  2696. until
  2697. a1.Size.y < 0.05--]]
  2698.  
  2699. game:GetService("Debris"):AddItem(a1,0.4)
  2700.  
  2701. if part then
  2702.  
  2703.  
  2704. kamehit:Play()
  2705.  
  2706.  
  2707. if part.Parent:findFirstChild("NewPart") == nil and part.Size.x < 500 and part.Parent:findFirstChild("Wave") == nil then
  2708.  
  2709.  
  2710.  
  2711. if part.Parent:IsA("Accessory") then
  2712. part.Parent.Parent:BreakJoints()
  2713. end
  2714. if part.Parent:IsA("Model") then
  2715. part.Parent:BreakJoints()
  2716. end
  2717. part:Destroy()
  2718. if enabled == true then
  2719. enabled = false
  2720. num = num + 1
  2721. local a21 = new("Part",char)
  2722. a21.Name = "Bean"
  2723. a21.Locked = true
  2724. a21.Size = v3(1,1,1)
  2725. a21.CanCollide = false
  2726. a21.Position = v3(999,999,999)
  2727. a21.BrickColor = bc("Electric blue")
  2728. if limitbreaker == true then
  2729. a21.Color = Color3.fromRGB(230, 16, 66)
  2730. end
  2731. a21.Material = "Neon"
  2732. a21.Transparency = 0
  2733. local aa21 = new("SpecialMesh",a21)
  2734. a21.Anchored = true
  2735. a21.Position = part.Position
  2736. aa21.MeshType = "Sphere"
  2737. aa21.Scale = v3(1,1,1)
  2738.  
  2739. local a21 = new("Part",char)
  2740. a21.Name = "Beam"..num
  2741. a21.Locked = true
  2742. a21.Size = v3(1,1,1)
  2743. a21.CanCollide = false
  2744. a21.Position = v3(999,999,999)
  2745. a21.BrickColor = bc("Bright bluish green")
  2746. if limitbreaker == true then
  2747. a21.Color = Color3.fromRGB(230, 16, 66)
  2748. end
  2749. a21.Material = "Neon"
  2750. a21.Transparency = 0
  2751. local aa21 = new("SpecialMesh",a21)
  2752. a21.Anchored = true
  2753. a21.Position = part.Position
  2754. aa21.MeshType = "Sphere"
  2755. aa21.Scale = v3(1,1,1)
  2756.  
  2757. GroundWave2()
  2758. GroundWave3()
  2759. GroundWave4()
  2760. GroundWave2()
  2761. GroundWave3()
  2762. GroundWave4()
  2763.  
  2764. GroundWave2()
  2765. GroundWave3()
  2766. GroundWave4()
  2767. GroundWave2()
  2768. GroundWave3()
  2769. GroundWave4()
  2770.  
  2771. wait(.4)
  2772.  
  2773. for i = 1,55 do
  2774. wait()
  2775. char["Bean"].Mesh.Scale = char["Bean"].Mesh.Scale + v3(7,7,7)
  2776. char["Bean"].Transparency = char["Bean"].Transparency + 0.019
  2777. char["Beam1"].Mesh.Scale = char["Beam1"].Mesh.Scale + v3(5,5,5)
  2778. char["Beam1"].Transparency = char["Beam1"].Transparency + 0.02
  2779. end
  2780. if ultrainstinct == true then
  2781. enabled = true
  2782. GroundWave2()
  2783. GroundWave3()
  2784. GroundWave4()
  2785. GroundWave2()
  2786. GroundWave3()
  2787. GroundWave4()
  2788.  
  2789. GroundWave5()
  2790. GroundWave6()
  2791. GroundWave7()
  2792. GroundWave5()
  2793. GroundWave6()
  2794. GroundWave7()
  2795.  
  2796. char["Beam1"].Transparency = 1
  2797.  
  2798. GroundWave2()
  2799. GroundWave3()
  2800. GroundWave4()
  2801. GroundWave2()
  2802. GroundWave3()
  2803. GroundWave4()
  2804.  
  2805. GroundWave2()
  2806. GroundWave3()
  2807. GroundWave4()
  2808. GroundWave2()
  2809. GroundWave3()
  2810. GroundWave4()
  2811. wait(1)
  2812. char["Beam1"]:Destroy()
  2813. char["Bean"]:Destroy()
  2814. end
  2815. if limitbreaker == true then
  2816. wait(0.8)
  2817. char["Beam1"]:Remove()
  2818. char["Bean"]:Remove()
  2819. end
  2820. end
  2821. end
  2822.  
  2823. end
  2824.  
  2825. wait(.5)
  2826.  
  2827. partt3:Remove()
  2828.  
  2829. ape51.Transparency = 0
  2830. ape56.Transparency = 1
  2831.  
  2832. hum.PlatformStand = false
  2833. char.Torso.Anchored = false
  2834. hrp.Anchored = false
  2835.  
  2836. RightShoulder.MaxVelocity = 0.15
  2837. LeftShoulder.MaxVelocity = 0.15
  2838.  
  2839. RefreshWelds()
  2840.  
  2841. Gyro:Remove()
  2842.  
  2843. Position:Remove()
  2844.  
  2845. attacking = false
  2846. assj3 = false
  2847. end
  2848. end;end
  2849.  
  2850. function kamehameha2()
  2851.  
  2852. if attacking == false then
  2853. attacking = true
  2854.  
  2855. local nun = 0
  2856.  
  2857. if assj3 == false then
  2858. if being == false then
  2859.  
  2860. assj3 = true
  2861.  
  2862. local beamgo = 6
  2863. local beamgo1 = 1
  2864. local enabled = true
  2865. local sizeup = -25
  2866.  
  2867.  
  2868. RightShoulder.MaxVelocity = 0
  2869. RightShoulder.CurrentAngle = 0
  2870. LeftShoulder.MaxVelocity = 0
  2871. LeftShoulder.CurrentAngle = 0
  2872.  
  2873. chatfunc("ULTIMATE,")
  2874.  
  2875. local TiltX = 0
  2876. local TiltY = 0
  2877. local TiltZ = 0.85
  2878. RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  2879. LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  2880. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltX,TiltY,TiltZ + 0.7)
  2881. TiltX = 0.6
  2882. TiltY = 0
  2883. TiltZ = 0
  2884. local MoveX = 0
  2885. local MoveY = 0
  2886. local MoveZ = -0.3
  2887. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltZ,TiltY,TiltZ)
  2888. RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2889. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2890. TiltX = -0.05
  2891. TiltY = 0
  2892. TiltZ = 0
  2893. MoveX = 0
  2894. MoveY = 0.1
  2895. MoveZ = 0
  2896. RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2897. LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  2898.  
  2899. wait(.02)
  2900.  
  2901. local partt2 = Instance.new("Part",char)
  2902. partt2.Name = "kame"
  2903. partt2.Position = Vector3.new(999,999,999)
  2904. partt2.Transparency = 1
  2905. partt2.Material = Enum.Material.Neon
  2906. partt2.BrickColor = BrickColor.new("White")
  2907. partt2.CanCollide = false
  2908. partt2.Anchored = false
  2909. partt2.Size = Vector3.new(0.15,0.15,0.15)
  2910. local partmesh = Instance.new("BlockMesh",partt2)
  2911. partmesh.Scale = Vector3.new(13.4,13.4,13.4)
  2912. hum.PlatformStand = true
  2913. local partweld2 = Instance.new("Weld")
  2914. partweld2.Part0 = tor
  2915. partweld2.Part1 = partt2
  2916. partweld2.Parent = partt2
  2917. partweld2.C0 = CFrame.new(-0,-.5,-1.5)
  2918. hrp.Anchored = true
  2919. wait(.01)
  2920. tor.Anchored = true
  2921. kamehameha3 = true
  2922.  
  2923. wait(1)
  2924.  
  2925. wait(1)
  2926.  
  2927. local Gyro = Instance.new("BodyGyro")
  2928. Gyro.Parent = tor
  2929. Gyro.D = 50
  2930. Gyro.cframe = tor.CFrame
  2931. Gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  2932. local Position = Instance.new("BodyPosition")
  2933. Position.Parent = tor
  2934. Position.position = tor.Position
  2935. Position.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  2936.  
  2937. RefreshWelds()
  2938.  
  2939. chatfunc("KAMEHAMEHAAA!!!")
  2940.  
  2941. kamehit2:Play()
  2942.  
  2943. KameWelds()
  2944.  
  2945. kamehameha3 = false
  2946.  
  2947. partt2:Remove()
  2948.  
  2949.  
  2950. local ray = Ray.new(tor.CFrame.p, (mouse.Hit.p - tor.CFrame.p).unit * 299) local pos = mouse.Hit.p
  2951. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  2952.  
  2953. local new = Instance.new
  2954. local v3 = Vector3.new
  2955. local bc = BrickColor.new
  2956.  
  2957. local a1 = new("Part",char)
  2958. a1.Name = "Beam"
  2959. a1.Anchored = true
  2960. a1.Size = v3(6,6,6)
  2961. a1.CanCollide = false
  2962. a1.Locked = true
  2963. a1.Position = v3(999,999,999)
  2964. a1.BrickColor = bc("White")
  2965. a1.Material = "Neon"
  2966. a1.Transparency = 0
  2967.  
  2968. local num = 0
  2969.  
  2970. Gyro.CFrame = CFrame.new(tor.Position, pos)
  2971.  
  2972. tor.CFrame = CFrame.new(tor.Position, pos)
  2973.  
  2974. local distance = (tor.CFrame.p - position).magnitude
  2975. a1.Size = Vector3.new(1.7, 1.7, distance)
  2976. a1.CFrame = CFrame.new(tor.CFrame.p, position) * CFrame.new(0, 0.25, -distance / 2)
  2977.  
  2978. game:GetService("Debris"):AddItem(a1,0.4)
  2979.  
  2980. if part then
  2981.  
  2982.  
  2983. kamehit:Play()
  2984.  
  2985.  
  2986. if part.Parent:findFirstChild("NewPart") == nil and part.Size.x < 500 and part.Parent:findFirstChild("Wave") == nil then
  2987.  
  2988.  
  2989.  
  2990. if part.Parent:IsA("Accessory") then
  2991. part.Parent.Parent:BreakJoints()
  2992. end
  2993. if part.Parent:IsA("Model") then
  2994. part.Parent:BreakJoints()
  2995. end
  2996. part:Destroy()
  2997. if enabled == true then
  2998. enabled = false
  2999. num = num + 1
  3000. local a21 = new("Part",char)
  3001. a21.Name = "Beam"..num
  3002. a21.Locked = true
  3003. a21.Size = v3(1,1,1)
  3004. a21.CanCollide = false
  3005. a21.Position = v3(999,999,999)
  3006. a21.BrickColor = bc("White")
  3007. a21.Material = "Neon"
  3008. a21.Transparency = 1
  3009. local aa21 = new("SpecialMesh",a21)
  3010. a21.Anchored = true
  3011. a21.Position = part.Position
  3012. aa21.MeshType = "Sphere"
  3013. aa21.Scale = v3(1,1,1)
  3014.  
  3015. local a23 = new("Part",char)
  3016. a23.Name = "Bean2"
  3017. a23.Locked = true
  3018. a23.Size = v3(1,1,1)
  3019. a23.CanCollide = false
  3020. a23.Position = v3(999,999,999)
  3021. a23.BrickColor = bc("Steel blue")
  3022. a23.Material = "Neon"
  3023. a23.Transparency = 1
  3024. local aa23 = new("SpecialMesh",a23)
  3025. a23.Anchored = true
  3026. a23.Position = part.Position
  3027. aa23.MeshType = "Sphere"
  3028. aa23.Scale = v3(1,1,1)
  3029.  
  3030. local a24 = new("Part",char)
  3031. a24.Name = "Bean"
  3032. a24.Locked = true
  3033. a24.Size = v3(1,1,1)
  3034. a24.CanCollide = false
  3035. a24.Position = v3(999,999,999)
  3036. a24.BrickColor = bc("Electric blue")
  3037. a24.Material = "Neon"
  3038. a24.Transparency = 0
  3039. local aa24 = new("SpecialMesh",a24)
  3040. a24.Anchored = true
  3041. a24.Position = part.Position
  3042. aa24.MeshType = "Sphere"
  3043. aa24.Scale = v3(1,1,1)
  3044.  
  3045. local a22 = new("Part",char)
  3046. a22.Name = "Beam3"
  3047. a22.Locked = true
  3048. a22.Size = v3(1,1,1)
  3049. a22.CanCollide = false
  3050. a22.Position = v3(999,999,999)
  3051. a22.BrickColor = bc("Medium blue")
  3052. a22.Material = "Neon"
  3053. a22.Transparency = 1
  3054. local aa22 = new("SpecialMesh",a22)
  3055. a22.Anchored = true
  3056. a22.Position = part.Position
  3057. aa22.MeshType = "Sphere"
  3058. aa22.Scale = v3(1,1,1)
  3059.  
  3060. GroundWave5()
  3061. GroundWave6()
  3062. GroundWave7()
  3063. wait(.09)
  3064. GroundWave5()
  3065. GroundWave6()
  3066. GroundWave7()
  3067.  
  3068. a21.Transparency = 0
  3069. a22.Transparency = 0
  3070. a23.Transparency = 0
  3071.  
  3072. for i = 1,55.99 do
  3073. wait()
  3074. char["Beam1"].Mesh.Scale = char["Beam1"].Mesh.Scale + v3(10,10,10)
  3075. char["Beam1"].Transparency = char["Beam1"].Transparency + 0.03
  3076.  
  3077. char["Beam3"].Mesh.Scale = char["Beam3"].Mesh.Scale + v3(5,5,5)
  3078. char["Beam3"].Transparency = char["Beam3"].Transparency + 0.02
  3079.  
  3080. char["Bean2"].Mesh.Scale = char["Bean2"].Mesh.Scale + v3(2,2,2)
  3081. char["Bean2"].Transparency = char["Bean2"].Transparency + 0.01
  3082.  
  3083. char["Bean"].Mesh.Scale = char["Bean"].Mesh.Scale + v3(1,1,1)
  3084. char["Bean"].Transparency = char["Bean"].Transparency + 0.001
  3085.  
  3086. end
  3087. enabled = true
  3088.  
  3089. a21.Transparency = 1
  3090. a22.Transparency = 1
  3091. a23.Transparency = 1
  3092. a24.Transparency = 1
  3093.  
  3094. GroundWave5()
  3095. GroundWave6()
  3096. GroundWave7()
  3097.  
  3098. GroundWave5()
  3099. GroundWave6()
  3100. GroundWave7()
  3101.  
  3102. wait(.4)
  3103.  
  3104.  
  3105. GroundWave5()
  3106. GroundWave6()
  3107. GroundWave7()
  3108.  
  3109. GroundWave5()
  3110. GroundWave6()
  3111. GroundWave7()
  3112.  
  3113. wait(.4)
  3114.  
  3115. GroundWave5()
  3116. GroundWave6()
  3117. GroundWave7()
  3118.  
  3119. GroundWave5()
  3120. GroundWave6()
  3121. GroundWave7()
  3122.  
  3123. char["Beam1"]:Destroy()
  3124. char["Beam3"]:Destroy()
  3125. char["Bean2"]:Destroy()
  3126. char["Bean"]:Destroy()
  3127.  
  3128. end
  3129. end
  3130.  
  3131. end
  3132.  
  3133. wait(.5)
  3134.  
  3135. ape51.Transparency = 0
  3136. ape56.Transparency = 1
  3137.  
  3138. hum.PlatformStand = false
  3139. char.Torso.Anchored = false
  3140. hrp.Anchored = false
  3141.  
  3142. RightShoulder.MaxVelocity = 0.15
  3143. LeftShoulder.MaxVelocity = 0.15
  3144.  
  3145. RefreshWelds()
  3146.  
  3147. Gyro:Remove()
  3148.  
  3149. Position:Remove()
  3150.  
  3151. available = false
  3152. auracan = false
  3153.  
  3154. wait(1.6)
  3155.  
  3156. assj3 = false
  3157.  
  3158. end
  3159.  
  3160. attacking = false
  3161.  
  3162. end
  3163.  
  3164. end;
  3165. end
  3166.  
  3167. function kamehamehax10()
  3168.  
  3169. if attacking == false then
  3170. attacking = true
  3171.  
  3172. local nun = 0
  3173.  
  3174. if assj3 == false then
  3175. if being == false then
  3176.  
  3177. assj3 = true
  3178.  
  3179. local beamgo = 6
  3180. local beamgo1 = 1
  3181. local enabled = true
  3182. local sizeup = -25
  3183.  
  3184.  
  3185. RightShoulder.MaxVelocity = 0
  3186. RightShoulder.CurrentAngle = 0
  3187. LeftShoulder.MaxVelocity = 0
  3188. LeftShoulder.CurrentAngle = 0
  3189.  
  3190. chatfunc("TIMES TEN,")
  3191.  
  3192. local TiltX = 0
  3193. local TiltY = 0
  3194. local TiltZ = 0.85
  3195. RightShoulder.C0 = RightShoulderC0 * CFrame.Angles(TiltX, TiltY, TiltZ)
  3196. LeftShoulder.C0 = LeftShoulderC0 * CFrame.Angles(TiltX, TiltY, -TiltZ)
  3197. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltX,TiltY,TiltZ + 0.7)
  3198. TiltX = 0.6
  3199. TiltY = 0
  3200. TiltZ = 0
  3201. local MoveX = 0
  3202. local MoveY = 0
  3203. local MoveZ = -0.3
  3204. RootJoint.C1 = RootJoint.C1 * CFrame.Angles(TiltZ,TiltY,TiltZ)
  3205. RightShoulder.C0 = RightShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  3206. LeftShoulder.C0 = LeftShoulder.C0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  3207. TiltX = -0.05
  3208. TiltY = 0
  3209. TiltZ = 0
  3210. MoveX = 0
  3211. MoveY = 0.1
  3212. MoveZ = 0
  3213. RightHip.C0 = RightHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  3214. LeftHip.C0 = LeftHipC0 * CFrame.Angles(TiltX, TiltY, TiltZ) * CFrame.new(MoveX, MoveY, MoveZ)
  3215.  
  3216. wait(3.04)
  3217.  
  3218. chatfunc("KAMEHAME...")
  3219.  
  3220. local partt2 = Instance.new("Part",char)
  3221. partt2.Name = "kame"
  3222. partt2.Position = Vector3.new(999,999,999)
  3223. partt2.Transparency = 1
  3224. partt2.Material = Enum.Material.Neon
  3225. partt2.BrickColor = BrickColor.new("Bright red")
  3226. partt2.CanCollide = false
  3227. partt2.Anchored = false
  3228. partt2.Size = Vector3.new(0.15,0.15,0.15)
  3229. local partmesh = Instance.new("BlockMesh",partt2)
  3230. partmesh.Scale = Vector3.new(13.4,13.4,13.4)
  3231. hum.PlatformStand = true
  3232. local partweld2 = Instance.new("Weld")
  3233. partweld2.Part0 = tor
  3234. partweld2.Part1 = partt2
  3235. partweld2.Parent = partt2
  3236. partweld2.C0 = CFrame.new(-0,-.5,-1.5)
  3237. hrp.Anchored = true
  3238. wait(.01)
  3239. tor.Anchored = true
  3240. kamehameha3 = true
  3241.  
  3242. wait(0.297)
  3243.  
  3244. partt2.Color = Color3.fromRGB(255,19,31)
  3245.  
  3246. wait(1.5)
  3247.  
  3248. local Gyro = Instance.new("BodyGyro")
  3249. Gyro.Parent = tor
  3250. Gyro.D = 50
  3251. Gyro.cframe = tor.CFrame
  3252. Gyro.maxTorque = Vector3.new(math.huge, math.huge, math.huge)
  3253. local Position = Instance.new("BodyPosition")
  3254. Position.Parent = tor
  3255. Position.position = tor.Position
  3256. Position.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  3257.  
  3258. RefreshWelds()
  3259.  
  3260. chatfunc("HAAAA!!!!")
  3261.  
  3262. kamehit2:Play()
  3263.  
  3264. KameWelds()
  3265.  
  3266. kamehameha3 = false
  3267.  
  3268. partt2:Remove()
  3269.  
  3270.  
  3271. local ray = Ray.new(tor.CFrame.p, (mouse.Hit.p - tor.CFrame.p).unit * 299) local pos = mouse.Hit.p
  3272. local part, position = workspace:FindPartOnRay(ray, char, false, true)
  3273.  
  3274. local new = Instance.new
  3275. local v3 = Vector3.new
  3276. local bc = BrickColor.new
  3277.  
  3278. local a1 = new("Part",char)
  3279. a1.Name = "Beam"
  3280. a1.Anchored = true
  3281. a1.Size = v3(6,6,6)
  3282. a1.CanCollide = false
  3283. a1.Locked = true
  3284. a1.Position = v3(999,999,999)
  3285. a1.Color = Color3.fromRGB(255,19,31)
  3286. a1.Material = "Neon"
  3287. a1.Transparency = 0
  3288.  
  3289. local num = 0
  3290.  
  3291. Gyro.CFrame = CFrame.new(tor.Position, pos)
  3292.  
  3293. tor.CFrame = CFrame.new(tor.Position, pos)
  3294.  
  3295. local distance = (tor.CFrame.p - position).magnitude
  3296. a1.Size = Vector3.new(1.7, 1.7, distance)
  3297. a1.CFrame = CFrame.new(tor.CFrame.p, position) * CFrame.new(0, 0.25, -distance / 2)
  3298.  
  3299. game:GetService("Debris"):AddItem(a1,0.4)
  3300.  
  3301. if part then
  3302.  
  3303.  
  3304. kamehit:Play()
  3305.  
  3306.  
  3307. if part.Parent:findFirstChild("NewPart") == nil and part.Size.x < 500 and part.Parent:findFirstChild("Wave") == nil then
  3308.  
  3309.  
  3310.  
  3311. if part.Parent:IsA("Accessory") then
  3312. part.Parent.Parent:BreakJoints()
  3313. end
  3314. if part.Parent:IsA("Model") then
  3315. part.Parent:BreakJoints()
  3316. end
  3317. part:Destroy()
  3318. if enabled == true then
  3319. enabled = false
  3320. num = num + 1
  3321. local a21 = new("Part",char)
  3322. a21.Name = "Beam"..num
  3323. a21.Locked = true
  3324. a21.Size = v3(1,1,1)
  3325. a21.CanCollide = false
  3326. a21.Position = v3(999,999,999)
  3327. a21.BrickColor = bc("White")
  3328. a21.Material = "Neon"
  3329. a21.Transparency = 1
  3330. local aa21 = new("SpecialMesh",a21)
  3331. a21.Anchored = true
  3332. a21.Position = part.Position
  3333. aa21.MeshType = "Sphere"
  3334. aa21.Scale = v3(1,1,1)
  3335.  
  3336. local a23 = new("Part",char)
  3337. a23.Name = "Bean2"
  3338. a23.Locked = true
  3339. a23.Size = v3(1,1,1)
  3340. a23.CanCollide = false
  3341. a23.Position = v3(999,999,999)
  3342. a23.BrickColor = bc("Bright red")
  3343. a23.Material = "Neon"
  3344. a23.Transparency = 1
  3345. local aa23 = new("SpecialMesh",a23)
  3346. a23.Anchored = true
  3347. a23.Position = part.Position
  3348. aa23.MeshType = "Sphere"
  3349. aa23.Scale = v3(1,1,1)
  3350.  
  3351. local a24 = new("Part",char)
  3352. a24.Name = "Bean"
  3353. a24.Locked = true
  3354. a24.Size = v3(1,1,1)
  3355. a24.CanCollide = false
  3356. a24.Position = v3(999,999,999)
  3357. a24.Color = Color3.fromRGB(255,19,31)
  3358. a24.Material = "Neon"
  3359. a24.Transparency = 0
  3360. local aa24 = new("SpecialMesh",a24)
  3361. a24.Anchored = true
  3362. a24.Position = part.Position
  3363. aa24.MeshType = "Sphere"
  3364. aa24.Scale = v3(1,1,1)
  3365.  
  3366. local a25 = new("Part",char)
  3367. a25.Name = "Bean3"
  3368. a25.Locked = true
  3369. a25.Size = v3(1,1,1)
  3370. a25.CanCollide = false
  3371. a25.Position = v3(999,999,999)
  3372. a25.Color = Color3.fromRGB(255, 31, 70)
  3373. a25.Material = "Neon"
  3374. a25.Transparency = 0
  3375. local aa25 = new("SpecialMesh",a24)
  3376. a25.Anchored = true
  3377. a25.Position = part.Position
  3378. aa25.MeshType = "Sphere"
  3379. aa25.Scale = v3(1,1,1)
  3380. aa25.Name = "Mesh"
  3381.  
  3382. local a22 = new("Part",char)
  3383. a22.Name = "Beam3"
  3384. a22.Locked = true
  3385. a22.Size = v3(1,1,1)
  3386. a22.CanCollide = false
  3387. a22.Position = v3(999,999,999)
  3388. a22.BrickColor = bc("Persimmon")
  3389. a22.Material = "Neon"
  3390. a22.Transparency = 1
  3391. local aa22 = new("SpecialMesh",a22)
  3392. a22.Anchored = true
  3393. a22.Position = part.Position
  3394. aa22.MeshType = "Sphere"
  3395. aa22.Scale = v3(1,1,1)
  3396.  
  3397. GroundWave5()
  3398. GroundWave6()
  3399. GroundWave7()
  3400. wait(.09)
  3401. GroundWave5()
  3402. GroundWave6()
  3403. GroundWave7()
  3404.  
  3405. a21.Transparency = 0
  3406. a22.Transparency = 0
  3407. a23.Transparency = 0
  3408.  
  3409. for i = 1,55.99 do
  3410. wait()
  3411. aa21.Scale = aa21.Scale + v3(10,10,10)
  3412. a21.Transparency = a21.Transparency + 0.03
  3413.  
  3414. aa22.Scale = aa22.Scale + v3(5,5,5)
  3415. a22.Transparency = a22.Transparency + 0.02
  3416.  
  3417. aa25.Scale = aa25.Scale + v3(2,2,2)
  3418. a25.Transparency = a25.Transparency + 0.01
  3419.  
  3420. aa24.Scale = aa24.Scale + v3(1,1,1)
  3421. a24.Transparency = a24.Transparency + 0.001
  3422.  
  3423. aa23.Scale = aa23.Scale + v3(10,10,10)
  3424. a23.Transparency = a23.Transparency + 0.03
  3425.  
  3426. end
  3427. enabled = true
  3428.  
  3429. a21.Transparency = 1
  3430. a22.Transparency = 1
  3431. a23.Transparency = 1
  3432. a24.Transparency = 1
  3433.  
  3434. GroundWave5()
  3435. GroundWave6()
  3436. GroundWave7()
  3437.  
  3438. GroundWave5()
  3439. GroundWave6()
  3440. GroundWave7()
  3441.  
  3442. wait(.4)
  3443.  
  3444.  
  3445. GroundWave5()
  3446. GroundWave6()
  3447. GroundWave7()
  3448.  
  3449. GroundWave5()
  3450. GroundWave6()
  3451. GroundWave7()
  3452.  
  3453. wait(.4)
  3454.  
  3455. char["Beam1"]:Destroy()
  3456. char["Beam3"]:Destroy()
  3457. char["Bean2"]:Destroy()
  3458. char["Bean"]:Destroy()
  3459. --char["Bean2"]:Destroy()
  3460.  
  3461. end
  3462. end
  3463.  
  3464. end
  3465.  
  3466. wait(.5)
  3467.  
  3468. ape51.Transparency = 0
  3469. ape56.Transparency = 1
  3470.  
  3471. hum.PlatformStand = false
  3472. char.Torso.Anchored = false
  3473. hrp.Anchored = false
  3474.  
  3475. RightShoulder.MaxVelocity = 0.15
  3476. LeftShoulder.MaxVelocity = 0.15
  3477.  
  3478. RefreshWelds()
  3479.  
  3480. Gyro:Remove()
  3481.  
  3482. Position:Remove()
  3483.  
  3484. available = false
  3485. auracan = false
  3486.  
  3487. wait(1.6)
  3488.  
  3489. assj3 = false
  3490.  
  3491. end
  3492.  
  3493. attacking = false
  3494.  
  3495. end
  3496.  
  3497. end;
  3498. end
  3499.  
  3500. mouse.KeyDown:connect(function(key)
  3501. if key == "e" then
  3502. if ssj2 == false and ssj3 == false and fullpowerssj == false and ultrainstinct == false then
  3503. if attacking == false then
  3504. kamehameha()
  3505. end
  3506. end
  3507. end
  3508. end)
  3509.  
  3510. mouse.KeyDown:connect(function(key)
  3511. if key == "r" then
  3512. if ssj2 == true and assj2 == true then
  3513. if attacking == false then
  3514. kamehameha()
  3515. end
  3516. end
  3517. end
  3518. end)
  3519.  
  3520. mouse.KeyDown:connect(function(key)
  3521. if key == "e" then
  3522. if fullpowerssj == true then
  3523. if attacking == false then
  3524. angrykamehameha()
  3525. end
  3526. end
  3527. end
  3528. end)
  3529.  
  3530. mouse.KeyDown:connect(function(key)
  3531. if key == "e" then
  3532. if ultrainstinct == true or limitbreaker == true then
  3533. if attacking == false then
  3534. ultrakamehameha()
  3535. end
  3536. end
  3537. end
  3538. end)
  3539.  
  3540. mouse.KeyDown:connect(function(key)
  3541. if key == "e" then
  3542. if ssj2 == true or ssj3 == true then
  3543. superkamehameha()
  3544. end
  3545. end
  3546. end)
  3547.  
  3548. mouse.KeyDown:connect(function(key)
  3549. if key == "q" then
  3550. if ssj2 == true and assj2 == true then
  3551. kamehameha2()
  3552. end
  3553. end
  3554. end)
  3555.  
  3556. mouse.KeyDown:connect(function(key)
  3557. if key == "r" then
  3558. if ssjwhite == true then
  3559. kamehamehax10()
  3560. end
  3561. end
  3562. end)
  3563.  
  3564. function normalform()
  3565.  
  3566. if available == true then
  3567. available = false
  3568. end
  3569.  
  3570. if auracan2 == true then
  3571. auracan2 = false
  3572. end
  3573. if auracan3 == true then
  3574. auracan3 = false
  3575. end
  3576. if auracan == true then
  3577. auracan = false
  3578. end
  3579. if auracan4 == true then
  3580. auracan4 = false
  3581. end
  3582.  
  3583. if hum.MaxHealth == math.huge then
  3584. hum.MaxHealth = math.huge
  3585. hum.Health = 10000
  3586. end
  3587.  
  3588. if ultrainstinct == true or limitbreaker == true then
  3589. ultrainstinct = false
  3590. dodge = false
  3591. automoviment = false
  3592. limitbreaker = false
  3593. wait(.009)
  3594. hum.MaxHealth = math.huge
  3595. hum.Health = 10000
  3596. end
  3597.  
  3598. if assj3 == false then
  3599. if ssj1 == true or ssj2 == true or ssj3 == true or sss3 == true or ssjg == true or ssjb == true or ssjbk == true or ssjwhite == true or normal == false or ssjbfullpower == true or kaioken == true or ultrainstinct == true then
  3600. if being == false then
  3601. being = true
  3602. hum.JumpPower = 0
  3603. hum.WalkSpeed = 0
  3604.  
  3605. Mus.Pitch = 1
  3606.  
  3607. for _,v in pairs(char:GetChildren()) do
  3608. if v.ClassName == "Sound" then
  3609. v:Stop()
  3610. end
  3611. end
  3612.  
  3613. for _,y in pairs(char:GetChildren()) do
  3614. if y.ClassName == "Part" then
  3615. for _,i in pairs(y:GetChildren()) do
  3616. if i.ClassName == "ParticleEmitter" then
  3617. i.Transparency = NumberSequence.new(1)
  3618. end
  3619. end
  3620. end
  3621. end
  3622.  
  3623. for _,v in pairs(char:GetChildren()) do
  3624. if v.Name == "Part8" then
  3625. v:Remove()
  3626. end
  3627. end
  3628.  
  3629. for _,v in pairs(char:GetChildren()) do
  3630. if v.Name == "Part9" then
  3631. v:Remove()
  3632. end
  3633. end
  3634.  
  3635. for _,v in pairs(char:GetChildren()) do
  3636. if v.Name == "leg2" or v.Name == "leg1" or v.Name == "arm1" or v.Name == "arm2" or v.Name == "tors" or v.Name == "hed" then
  3637. v:Remove()
  3638. end
  3639. end
  3640.  
  3641. char.Hair:Remove()
  3642.  
  3643. Hair7 = Instance.new("Part")
  3644. Hair7.Parent = p.Character
  3645. Hair7.Name = "Hair"
  3646. Hair7.CanCollide = false
  3647. Hair7.Locked = true
  3648. Hair7.TopSurface = "Smooth"
  3649. Hair7.BottomSurface = "Smooth"
  3650. Hair7.formFactor = "Symmetric"
  3651. Hair7.Material = "Neon"
  3652. Hair7.BrickColor = BrickColor.new("Really black")
  3653. Hair7.CFrame = p.Character.Torso.CFrame
  3654. Hair7.Size = Vector3.new(1, 1, 1)
  3655. Hair7.Transparency = 0
  3656.  
  3657. Weld1 = Instance.new("Weld")
  3658. Weld1.Parent = p.Character.Head
  3659. Weld1.Part0 = p.Character.Head
  3660. Weld1.Part1 = Hair7
  3661. Weld1.C0 = CFrame.new(0, 1, 0)
  3662.  
  3663. Mesh = Instance.new("SpecialMesh")
  3664. Mesh.Offset = Vector3.new(0.2, -0.2, 0.2)
  3665. Mesh.Parent = Hair7
  3666. Mesh.Scale = Vector3.new(1, 1, 1)
  3667. Mesh.MeshType = "FileMesh"
  3668. Mesh.MeshId = "http://www.roblox.com/asset/?id=476757756"
  3669. Mesh.TextureId = ""
  3670.  
  3671. ape51.Color = Color3.fromRGB(106,57,8)
  3672.  
  3673. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=259849794"
  3674. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=539482020"
  3675.  
  3676. hed.face.Texture = "rbxassetid://967842214"
  3677.  
  3678. local num = 0
  3679. local a21e = Instance.new("Part",char)
  3680. a21e.Name = "Beam"..num
  3681. a21e.Locked = true
  3682. a21e.Size = Vector3.new(1,1,1)
  3683. a21e.CanCollide = false
  3684. a21e.Position = Vector3.new(999,999,999)
  3685. a21e.BrickColor = BrickColor.new("Medium blue")
  3686. a21e.Material = "Neon"
  3687. a21e.Transparency = 0
  3688. local aa21e = Instance.new("SpecialMesh",a21e)
  3689. a21e.Anchored = true
  3690. a21e.Position = hrp.Position
  3691. aa21e.MeshType = "Sphere"
  3692. aa21e.Scale = Vector3.new(1,1,1)
  3693.  
  3694. for i = 1,25 do
  3695. wait()
  3696. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  3697. a21e.Transparency = a21e.Transparency + 0.04
  3698. end
  3699.  
  3700. a21e:Remove()
  3701.  
  3702. wait()
  3703.  
  3704. hum.WalkSpeed = 16
  3705. hum.JumpPower = 50
  3706.  
  3707. if hum.MaxHealth == math.huge then
  3708. hum.MaxHealth = math.huge
  3709. hum.Health = 10000
  3710. end
  3711.  
  3712. for _,y in pairs(char:GetChildren()) do
  3713. if y.ClassName == "Part" then
  3714. for _,i in pairs(y:GetChildren()) do
  3715. if i.ClassName == "ParticleEmitter" then
  3716. i:Remove()
  3717. end
  3718. end
  3719. end
  3720. end
  3721.  
  3722. normal = true
  3723. ssjg = false
  3724. ssjr = false
  3725. ssj3 = false
  3726. sss3 = false
  3727. ssj2 = false
  3728. ssj1 = false
  3729. assj2 = false
  3730. ssjb = false
  3731. ultrainstinct = false
  3732. dodge = false
  3733. automoviment = false
  3734. kaioken2 = false
  3735. kaioken4 = false
  3736. fullpowerssj = false
  3737. kaioken5 = false
  3738. kaioken10 = false
  3739. kaioken20 = false
  3740. kaiokenx50 = false
  3741. kaioken = false
  3742. ssjbk = false
  3743. ssjbfullpower = false
  3744. ssjwhite = false
  3745. limitbreaker = false
  3746. being = false
  3747.  
  3748. if hum.MaxHealth == math.huge then
  3749. hum.MaxHealth = math.huge
  3750. hum.Health = 10000
  3751. end
  3752.  
  3753. end
  3754. end
  3755.  
  3756. end
  3757. end
  3758.  
  3759. function kicharge()
  3760. hum.PlatformStand = true
  3761. tor.Anchored = true
  3762. hrp.Anchored = true
  3763.  
  3764. SuperWelds()
  3765.  
  3766. if fullpowerssj == true then
  3767. local ssj2aura = Instance.new("ParticleEmitter",hrp)
  3768. ssj2aura.Name = "control"
  3769. ssj2aura.Texture = "rbxassetid://241992237"
  3770. ssj2aura.Transparency = NumberSequence.new(0.425)
  3771. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,255,25))
  3772. ssj2aura.LightEmission = 1
  3773. ssj2aura.Size = NumberSequence.new(8)
  3774. ssj2aura.Lifetime = NumberRange.new(0.5)
  3775. ssj2aura.Rate = 19
  3776. ssj2aura.ZOffset = 0
  3777. ssj2aura.Speed = NumberRange.new(10)
  3778. ssj2aura.LockedToPart = true
  3779. ssj2aura.ZOffset = -1
  3780.  
  3781. local ssj2aura2 = Instance.new("ParticleEmitter",hrp)
  3782. ssj2aura2.Name = "control2"
  3783. ssj2aura2.Texture = "rbxassetid://1072507908"
  3784. ssj2aura2.Transparency = NumberSequence.new(0.555)
  3785. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  3786. ssj2aura2.LightEmission = 0.75
  3787. ssj2aura2.Size = NumberSequence.new(8)
  3788. ssj2aura2.Lifetime = NumberRange.new(0.5)
  3789. ssj2aura2.Rate = 19
  3790. ssj2aura2.ZOffset = -1
  3791. ssj2aura2.Speed = NumberRange.new(10)
  3792. ssj2aura2.LockedToPart = true
  3793. ssj2aura2.ZOffset = -1
  3794. end
  3795.  
  3796. if ssj2 == true and ssj1 == true and ssj3 == false and assj2 == false then
  3797. local ssj2aura = Instance.new("ParticleEmitter",hrp)
  3798. ssj2aura.Name = "ssj2aura"
  3799. ssj2aura.Texture = "rbxassetid://241992237"
  3800. ssj2aura.Transparency = NumberSequence.new(0.425)
  3801. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,255,25))
  3802. ssj2aura.LightEmission = 1
  3803. ssj2aura.Size = NumberSequence.new(7)
  3804. ssj2aura.Lifetime = NumberRange.new(0.5)
  3805. ssj2aura.Rate = 19
  3806. ssj2aura.ZOffset = 0
  3807. ssj2aura.Speed = NumberRange.new(10)
  3808. ssj2aura.LockedToPart = true
  3809.  
  3810. local ssj2aura2 = Instance.new("ParticleEmitter",hrp)
  3811. ssj2aura2.Name = "ssj2aura2"
  3812. ssj2aura2.Texture = "rbxassetid://1072507908"
  3813. ssj2aura2.Transparency = NumberSequence.new(0.555)
  3814. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  3815. ssj2aura2.LightEmission = 0.75
  3816. ssj2aura2.Size = NumberSequence.new(8)
  3817. ssj2aura2.Lifetime = NumberRange.new(0.5)
  3818. ssj2aura2.Rate = 19
  3819. ssj2aura2.ZOffset = -1
  3820. ssj2aura2.Speed = NumberRange.new(10)
  3821. ssj2aura2.LockedToPart = true
  3822.  
  3823. local particle = Instance.new("ParticleEmitter",hrp)
  3824. particle.Color = ColorSequence.new(Color3.fromRGB(0, 189, 255))
  3825. particle.LightEmission = 0.5
  3826. particle.LightInfluence = 0
  3827. particle.Transparency = NumberSequence.new(0.9)
  3828. particle.Acceleration = Vector3.new(0,0.04,0)
  3829. particle.Size = NumberSequence.new(7.9)
  3830. particle.Texture = "rbxassetid://1045690145"
  3831. particle.ZOffset = 1
  3832. particle.LockedToPart = true
  3833. particle.Enabled = true
  3834. particle.Lifetime = NumberRange.new(0.09)
  3835. particle.Rate = 20
  3836. particle.Rotation = NumberRange.new(-365,365)
  3837. particle.Speed = NumberRange.new(2)
  3838. particle.SpreadAngle = Vector2.new(9999,9999)
  3839. particle.Name = "ssj9electric"
  3840. particle.EmissionDirection = Enum.NormalId.Bottom
  3841. end
  3842.  
  3843. if ssj3 == true then
  3844. local ssj9aura = Instance.new("ParticleEmitter",hrp)
  3845. ssj9aura.Name = "control"
  3846. ssj9aura.Texture = "rbxassetid://241992237"
  3847. ssj9aura.Transparency = NumberSequence.new(0.425)
  3848. ssj9aura.Color = ColorSequence.new(Color3.fromRGB(169, 234, 82))
  3849. ssj9aura.LightEmission = 1
  3850. ssj9aura.Size = NumberSequence.new(9)
  3851. ssj9aura.Lifetime = NumberRange.new(0.5)
  3852. ssj9aura.Rate = 19
  3853. ssj9aura.Speed = NumberRange.new(10)
  3854. ssj9aura.LockedToPart = true
  3855. ssj9aura.ZOffset = -1
  3856.  
  3857. local ssj9aura2 = Instance.new("ParticleEmitter",hrp)
  3858. ssj9aura2.Name = "control2"
  3859. ssj9aura2.Texture = "rbxassetid://1072507908"
  3860. ssj9aura2.Transparency = NumberSequence.new(0.555)
  3861. ssj9aura2.Color = ColorSequence.new(Color3.fromRGB(99, 200, 82))
  3862. ssj9aura2.LightEmission = 0.75
  3863. ssj9aura2.Size = NumberSequence.new(10)
  3864. ssj9aura2.Lifetime = NumberRange.new(0.5)
  3865. ssj9aura2.Rate = 19
  3866. ssj9aura2.ZOffset = -1
  3867. ssj9aura2.Speed = NumberRange.new(10)
  3868. ssj9aura2.LockedToPart = true
  3869. ssj9aura2.ZOffset = -1
  3870. Mus.Pitch = 1
  3871. end
  3872.  
  3873. if assj2 == true then
  3874. local ssj9aura = Instance.new("ParticleEmitter",hrp)
  3875. ssj9aura.Name = "control"
  3876. ssj9aura.Texture = "rbxassetid://241992237"
  3877. ssj9aura.Transparency = NumberSequence.new(0.825)
  3878. ssj9aura.Color = ColorSequence.new(Color3.fromRGB(255, 200, 249))
  3879. ssj9aura.LightEmission = 1
  3880. ssj9aura.Size = NumberSequence.new(8)
  3881. ssj9aura.Lifetime = NumberRange.new(0.5)
  3882. ssj9aura.Rate = 19
  3883. ssj9aura.Speed = NumberRange.new(10)
  3884. ssj9aura.LockedToPart = true
  3885. ssj9aura.ZOffset = -3
  3886.  
  3887. local ssj9aura2 = Instance.new("ParticleEmitter",hrp)
  3888. ssj9aura2.Name = "control2"
  3889. ssj9aura2.Texture = "rbxassetid://1072507908"
  3890. ssj9aura2.Transparency = NumberSequence.new(0.955)
  3891. ssj9aura2.Color = ColorSequence.new(Color3.fromRGB(249, 255, 200))
  3892. ssj9aura2.LightEmission = 0.75
  3893. ssj9aura2.Size = NumberSequence.new(9)
  3894. ssj9aura2.Lifetime = NumberRange.new(0.5)
  3895. ssj9aura2.Rate = 19
  3896. ssj9aura2.ZOffset = -1
  3897. ssj9aura2.Speed = NumberRange.new(10)
  3898. ssj9aura2.LockedToPart = true
  3899. ssj9aura2.ZOffset = -2
  3900. Mus.Pitch = 1
  3901. end
  3902.  
  3903. if ssjwhite == true then
  3904. local ssj9aura = Instance.new("ParticleEmitter",hrp)
  3905. ssj9aura.Name = "control"
  3906. ssj9aura.Texture = "rbxassetid://241992237"
  3907. ssj9aura.Transparency = NumberSequence.new(0.825)
  3908. ssj9aura.Color = ColorSequence.new(Color3.fromRGB(255, 200, 18))
  3909. ssj9aura.LightEmission = 1
  3910. ssj9aura.Size = NumberSequence.new(7)
  3911. ssj9aura.Lifetime = NumberRange.new(0.5)
  3912. ssj9aura.Rate = 19
  3913. ssj9aura.Speed = NumberRange.new(10)
  3914. ssj9aura.LockedToPart = true
  3915. ssj9aura.ZOffset = -2
  3916.  
  3917. local ssj9aura2 = Instance.new("ParticleEmitter",hrp)
  3918. ssj9aura2.Name = "control2"
  3919. ssj9aura2.Texture = "rbxassetid://1072507908"
  3920. ssj9aura2.Transparency = NumberSequence.new(0.855)
  3921. ssj9aura2.Color = ColorSequence.new(Color3.fromRGB(255, 19, 70))
  3922. ssj9aura2.LightEmission = 0.75
  3923. ssj9aura2.Size = NumberSequence.new(10)
  3924. ssj9aura2.Lifetime = NumberRange.new(0.5)
  3925. ssj9aura2.Rate = 19
  3926. ssj9aura2.ZOffset = -2
  3927. ssj9aura2.Speed = NumberRange.new(10)
  3928. ssj9aura2.LockedToPart = true
  3929. ssj9aura2.ZOffset = -1
  3930. Mus.Pitch = 1
  3931. end
  3932.  
  3933. if kaioken == true and ssbk == false and kaioken10 == false and kaioken20 == false or kaioken5 == true or kaioken2 == true or kaioken4 == true then
  3934. local ssj9aura = Instance.new("ParticleEmitter",hrp)
  3935. ssj9aura.Name = "control"
  3936. ssj9aura.Texture = "rbxassetid://241992237"
  3937. ssj9aura.Transparency = NumberSequence.new(0.825)
  3938. ssj9aura.Color = ColorSequence.new(Color3.fromRGB(255, 9, 1))
  3939. ssj9aura.LightEmission = 1
  3940. ssj9aura.Size = NumberSequence.new(12)
  3941. ssj9aura.Lifetime = NumberRange.new(0.5)
  3942. ssj9aura.Rate = 19
  3943. ssj9aura.Speed = NumberRange.new(10)
  3944. ssj9aura.LockedToPart = true
  3945. ssj9aura.ZOffset = -2
  3946.  
  3947. local ssj9aura2 = Instance.new("ParticleEmitter",hrp)
  3948. ssj9aura2.Name = "control2"
  3949. ssj9aura2.Texture = "rbxassetid://1072507908"
  3950. ssj9aura2.Transparency = NumberSequence.new(0.855)
  3951. ssj9aura2.Color = ColorSequence.new(Color3.fromRGB(255, 0, 0))
  3952. ssj9aura2.LightEmission = 0.75
  3953. ssj9aura2.Size = NumberSequence.new(11)
  3954. ssj9aura2.Lifetime = NumberRange.new(0.5)
  3955. ssj9aura2.Rate = 19
  3956. ssj9aura2.ZOffset = -2
  3957. ssj9aura2.Speed = NumberRange.new(10)
  3958. ssj9aura2.LockedToPart = true
  3959. ssj9aura2.ZOffset = -1
  3960. Mus.Pitch = 1
  3961. end
  3962.  
  3963. GroundWave0()
  3964.  
  3965. rock2 = false
  3966. rock = false
  3967. rock2 = false
  3968.  
  3969. charge = true
  3970. attacking = true
  3971.  
  3972. mouse.KeyDown:connect(function(key)
  3973. if key == "m" then
  3974.  
  3975. --wait(3)
  3976.  
  3977. GroundWave1()
  3978.  
  3979. rock3 = true
  3980.  
  3981. if fullpowerssj == true then
  3982. hrp.control.Enabled = false
  3983. hrp.control2.Enabled = false
  3984. hrp.control:Remove()
  3985. hrp.control2:Remove()
  3986. end
  3987.  
  3988. if ssj2 == true and ssj1 == true and ssj3 == false and assj2 == false then
  3989. hrp.ssj2aura.Enabled = false
  3990. hrp.ssj2aura2.Enabled = false
  3991. hrp.ssj9electric.Enabled = false
  3992. hrp.ssj2aura2:Remove()
  3993. hrp.ssj9electric:Remove()
  3994. hrp.ssj2aura:Remove()
  3995. end
  3996.  
  3997. if ssj3 == true then
  3998. hrp.control.Enabled = false
  3999. hrp.control2.Enabled = false
  4000. hrp.control:Remove()
  4001. hrp.control2:Remove()
  4002. end
  4003.  
  4004. if assj2 == true then
  4005. hrp.control.Enabled = false
  4006. hrp.control2.Enabled = false
  4007. hrp.control:Remove()
  4008. hrp.control2:Remove()
  4009. end
  4010.  
  4011. if ssjwhite == true then
  4012. hrp.control.Enabled = false
  4013. hrp.control2.Enabled = false
  4014. hrp.control:Remove()
  4015. hrp.control2:Remove()
  4016. end
  4017.  
  4018. if kaioken == true and ssbk == false and kaioken10 == false and kaioken20 == false or kaioken5 == true or kaioken2 == true or kaioken4 == true then
  4019. hrp.control.Enabled = false
  4020. hrp.control2.Enabled = false
  4021. hrp.control:Remove()
  4022. hrp.control2:Remove()
  4023. end
  4024.  
  4025. RefreshWelds()
  4026.  
  4027. rock3 = true
  4028.  
  4029. hum.PlatformStand = false
  4030. tor.Anchored = false
  4031. hrp.Anchored = false
  4032.  
  4033. rock3 = true
  4034.  
  4035. charge = false
  4036. attacking = false
  4037. being = false
  4038. rock = false
  4039. rock3 = true
  4040.  
  4041. end
  4042. end)
  4043. end
  4044.  
  4045. mouse.KeyDown:connect(function(key)
  4046. if key == "n" then
  4047. if charge == false then
  4048. kicharge()
  4049. end
  4050. end;end)
  4051.  
  4052. function ss2()
  4053.  
  4054. if ssj1 == true or fullpowerssj == true then
  4055. if being == false then
  4056. if ssj2 == false then
  4057. if normal == false then
  4058. being = true
  4059.  
  4060. if fullpowerssj == true then
  4061. already3 = true
  4062. end
  4063.  
  4064. if already3 == false then
  4065. chatfunc("Known as a stage ascended past the super saiyan form..")
  4066. wait(2.99)
  4067. chatfunc("SUPER SAIYAN 2")
  4068. end
  4069.  
  4070. if already3 == true then
  4071. if ssj1 == true then
  4072. chatfunc("Super Saiyan 2")
  4073. end
  4074. if fullpowerssj == true then
  4075. chatfunc("HAAAAAA!!!!")
  4076. wait(.01)
  4077. hed.face.Texture = "rbxassetid://1177818030"
  4078. end
  4079. end
  4080.  
  4081. already3 = true
  4082.  
  4083. if ssj1 == true then
  4084.  
  4085. rock = true
  4086.  
  4087.  
  4088. wait(.25)
  4089.  
  4090. end
  4091.  
  4092. hum.WalkSpeed = 0
  4093. hum.JumpPower = 0
  4094.  
  4095. if ssj1 == true then
  4096.  
  4097. wait(.5)
  4098.  
  4099. rock3 = true
  4100.  
  4101. end
  4102.  
  4103. if ssj1 == true then
  4104. Mus.SoundId = "rbxassetid://144377132"
  4105. Mus.Volume = 10
  4106. Mus:Play()
  4107. end
  4108.  
  4109. if fullpowerssj == true then
  4110. Mus:Stop()
  4111. Mus.Pitch = 1
  4112. Mus.SoundId = "rbxassetid://346663122"
  4113. Mus:Play()
  4114. end
  4115.  
  4116. if ssj1 == true then
  4117. local Mus2 = Instance.new("Sound",char)
  4118. Mus2.SoundId = "rbxassetid://301184111"
  4119. Mus2.Volume = 4
  4120. Mus2.Looped = false
  4121. Mus2:Play()
  4122. end
  4123.  
  4124. if ssj1 == true then
  4125. wait(.25)
  4126. rock3 = true
  4127. wait(.5)
  4128. rock3 = true
  4129. wait(2.5)
  4130.  
  4131. rock2 = true
  4132. rock = false
  4133.  
  4134. wait(1.999)
  4135. end
  4136.  
  4137. if fullpowerssj == true then
  4138. GroundShake = true
  4139. GroundShake2 = true
  4140.  
  4141. coroutine.wrap(function()
  4142. for i = 1,5 do
  4143. if fullpowerssj == true then
  4144. wait(math.random(1,2))
  4145.  
  4146. local block = Instance.new("Part",char)
  4147. block.Anchored = true
  4148. block.Transparency = 1
  4149. block.Position = hrp.Position + Vector3.new(math.random(-25,29),-3,math.random(-25,29))
  4150. block.CanCollide = false
  4151. local block2 = Instance.new("Part",char)
  4152. block2.Anchored = true
  4153. block2.Position = block.Position + Vector3.new(0,200,0)
  4154. block2.CanCollide = false
  4155. block2.Transparency = 1
  4156.  
  4157. wait(.05)
  4158. Lightning1(block.Position,block2.Position,1,15,workspace)
  4159. rock3 = true
  4160. wait(.09)
  4161. block:Remove()
  4162. end;end
  4163. end)()
  4164.  
  4165. wait(4.999)
  4166.  
  4167. GroundShake = false
  4168. GroundShake2 = false
  4169.  
  4170. wait(3)
  4171. chatfunc("GRRRRR!!!!!! THIS IS A SUPER SAIYAN 'RAGE'!!!!")
  4172.  
  4173. end
  4174.  
  4175. local num = 0
  4176. local a21e = Instance.new("Part",char)
  4177. a21e.Name = "Beam"..num
  4178. a21e.Locked = true
  4179. a21e.Size = Vector3.new(1,1,1)
  4180. a21e.CanCollide = false
  4181. a21e.Position = Vector3.new(999,999,999)
  4182. a21e.BrickColor = BrickColor.new("Cool yellow")
  4183. if fullpowerssj == true then
  4184. a21e.BrickColor = BrickColor.new("Electric blue")
  4185. end
  4186. a21e.Material = "Neon"
  4187. a21e.Transparency = 0
  4188. local aa21e = Instance.new("SpecialMesh",a21e)
  4189. a21e.Anchored = true
  4190. a21e.Position = hrp.Position
  4191. aa21e.MeshType = "Sphere"
  4192. aa21e.Scale = Vector3.new(1,1,1)
  4193.  
  4194. Mus1:Play()
  4195.  
  4196. if fullpowerssj == true then
  4197. Mesh.MeshId = "rbxassetid://560718478"
  4198. Mesh.Scale = Vector3.new(6.3,6.3,6.3)
  4199. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  4200. Hair7.Color = Color3.fromRGB(255,255,0)
  4201. ape51.Color = Color3.fromRGB(255,255,0)
  4202. hed.face.Texture = "rbxassetid://231488725"
  4203.  
  4204. local Part2 = Instance.new("Part")
  4205. Part2.Parent = char
  4206. Part2.Name = "Part9"
  4207. Part2.CanCollide = false
  4208. Part2.Locked = true
  4209. Part2.TopSurface = "Smooth"
  4210. Part2.BottomSurface = "Smooth"
  4211. Part2.formFactor = "Symmetric"
  4212. Part2.Material = "Neon"
  4213. Part2.BrickColor = BrickColor.new("Really black")
  4214. Part2.CFrame = p.Character.Torso.CFrame
  4215. Part2.Size = Vector3.new(2,2,2)
  4216. Part2.Transparency = 0
  4217.  
  4218. local Mesh3 = Instance.new("SpecialMesh")
  4219. Mesh3.Offset = Vector3.new(0.2, -0.2, 0.2)
  4220. Mesh3.Parent = Part2
  4221. Mesh3.Scale = Vector3.new(1, 1, 1)
  4222. Mesh3.MeshType = "FileMesh"
  4223. Mesh3.MeshId = "http://www.roblox.com/asset/?id=476757756"
  4224. Mesh3.TextureId = ""
  4225.  
  4226.  
  4227. local Weld5 = Instance.new("Weld")
  4228. Weld5.Parent = p.Character.Head
  4229. Weld5.Part0 = p.Character.Head
  4230. Weld5.Part1 = Part2
  4231.  
  4232. Part2.Color = Color3.fromRGB(255,255,0)
  4233. Mesh3.MeshId = "rbxassetid://430344159"
  4234. Mesh3.Scale = Vector3.new(3.8,3.8,3.8)
  4235. Weld5.C0 = CFrame.new(-.25,1.2,.34)
  4236.  
  4237. end
  4238.  
  4239. for i = 1,15 do
  4240.  
  4241. if ssj1 == true then
  4242. Mesh.MeshId = "rbxassetid://560718478"
  4243. Mesh.Scale = Vector3.new(6.3,6.3,6.3)
  4244. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  4245. Hair7.Color = Color3.fromRGB(255,255,0)
  4246. ape51.Color = Color3.fromRGB(255,255,0)
  4247. hed.face.Texture = "rbxassetid://231488725"
  4248. end
  4249.  
  4250. if fullpowerssj == true then
  4251. coroutine.wrap(function()
  4252. for i = 1,5 do
  4253. if fullpowerssj == true then
  4254. wait(math.random(7,14))
  4255.  
  4256. local block = Instance.new("Part",char)
  4257. block.Anchored = true
  4258. block.Transparency = 1
  4259. block.Position = hrp.Position + Vector3.new(math.random(-99,44),-5,math.random(-99,44))
  4260. block.CanCollide = false
  4261. local block2 = Instance.new("Part",char)
  4262. block2.Anchored = true
  4263. block2.Position = block.Position + Vector3.new(0,200,0)
  4264. block2.CanCollide = false
  4265. block2.Transparency = 1
  4266.  
  4267. wait(.05)
  4268. Lightning1(block.Position,block2.Position,1,15,workspace)
  4269. rock3 = true
  4270. wait(.09)
  4271. block:Remove()
  4272. end;end
  4273. end)()
  4274. end
  4275.  
  4276. wait(.025)
  4277. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  4278. wait(.05)
  4279. a21e.Transparency = a21e.Transparency + 0.1
  4280. end
  4281.  
  4282. wait(.1)
  4283.  
  4284. a21e:Remove()
  4285.  
  4286. if ssj1 == true then
  4287. hum.WalkSpeed = 79
  4288. hum.JumpPower = 90
  4289. end
  4290.  
  4291. local ssj2aura = Instance.new("ParticleEmitter",tor)
  4292. ssj2aura.Name = "ssj2aura"
  4293. ssj2aura.Texture = "rbxassetid://241992237"
  4294. ssj2aura.Transparency = NumberSequence.new(0.425)
  4295. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,255,25))
  4296. ssj2aura.LightEmission = 1
  4297. ssj2aura.Size = NumberSequence.new(6)
  4298. ssj2aura.Lifetime = NumberRange.new(0.5)
  4299. ssj2aura.Rate = 19
  4300. ssj2aura.ZOffset = 0
  4301. ssj2aura.Speed = NumberRange.new(10)
  4302. ssj2aura.LockedToPart = true
  4303.  
  4304. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  4305. ssj2aura2.Name = "ssj2aura2"
  4306. ssj2aura2.Texture = "rbxassetid://1072507908"
  4307. ssj2aura2.Transparency = NumberSequence.new(0.555)
  4308. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  4309. ssj2aura2.LightEmission = 0.75
  4310. ssj2aura2.Size = NumberSequence.new(6)
  4311. ssj2aura2.Lifetime = NumberRange.new(0.5)
  4312. ssj2aura2.Rate = 19
  4313. ssj2aura2.ZOffset = -1
  4314. ssj2aura2.Speed = NumberRange.new(10)
  4315. ssj2aura2.LockedToPart = true
  4316.  
  4317. local particle = Instance.new("ParticleEmitter",hrp)
  4318. particle.Color = ColorSequence.new(Color3.fromRGB(0, 189, 255))
  4319. particle.LightEmission = 0.5
  4320. particle.LightInfluence = 0
  4321. particle.Transparency = NumberSequence.new(0)
  4322. particle.Acceleration = Vector3.new(0,0.04,0)
  4323. particle.Size = NumberSequence.new(2.9)
  4324. particle.Texture = "rbxassetid://1045690145"
  4325. particle.ZOffset = 1
  4326. particle.LockedToPart = true
  4327. particle.Enabled = true
  4328. particle.Lifetime = NumberRange.new(0.09)
  4329. particle.Rate = 10
  4330. particle.Rotation = NumberRange.new(-360,360)
  4331. particle.Speed = NumberRange.new(1.7)
  4332. particle.SpreadAngle = Vector2.new(999,999)
  4333. particle.Name = "ssj2electric"
  4334. particle.EmissionDirection = Enum.NormalId.Bottom
  4335.  
  4336. if fullpowerssj == true then
  4337.  
  4338. local color1 = Color3.fromRGB(0,115,255)
  4339. local color2 = Color3.fromRGB(209,155,0)
  4340. local color3 = Color3.fromRGB(0,75,230)
  4341.  
  4342. local list4 = {ColorSequenceKeypoint.new(0,color1),ColorSequenceKeypoint.new(0.959,color2),ColorSequenceKeypoint.new(1,color3)}
  4343.  
  4344.  
  4345. particle.LightEmission = 1.75
  4346. particle.Color = ColorSequence.new(Color3.fromRGB(44,195,252))
  4347. particle.EmissionDirection = Enum.NormalId.Top
  4348. particle.Transparency = NumberSequence.new(0.89)
  4349.  
  4350. local color4 = Color3.fromRGB(255,255,25)
  4351. local color5 = Color3.fromRGB(07,245,252)
  4352. local color6 = Color3.fromRGB(00,255,255)
  4353.  
  4354. local list5 = {ColorSequenceKeypoint.new(0,color2),ColorSequenceKeypoint.new(0.259,color1),ColorSequenceKeypoint.new(0.529,color3),ColorSequenceKeypoint.new(1,color1)}
  4355.  
  4356. ssj2aura.Size = NumberSequence.new(5)
  4357. ssj2aura.ZOffset = 1
  4358. ssj2aura.Color = ColorSequence.new(list4)
  4359. ssj2aura.Transparency = NumberSequence.new(0.67)
  4360. ssj2aura.LightEmission = 2
  4361.  
  4362. tor.control2.Color = ColorSequence.new(list5)
  4363.  
  4364. local particle2 = Instance.new("ParticleEmitter",hrp)
  4365. particle2.Color = ColorSequence.new(Color3.fromRGB(44, 195, 252))
  4366. particle2.LightEmission = 1.75
  4367. particle2.LightInfluence = 0
  4368. particle2.Transparency = NumberSequence.new(0.85)
  4369. particle2.Acceleration = Vector3.new(0,0.04,0)
  4370. particle2.Size = NumberSequence.new(2.9)
  4371. particle2.Texture = "rbxassetid://1045690145"
  4372. particle2.ZOffset = -1
  4373. particle2.LockedToPart = true
  4374. particle2.Enabled = true
  4375. particle2.Lifetime = NumberRange.new(0.09)
  4376. particle2.Rate = 10
  4377. particle2.Rotation = NumberRange.new(-360,360)
  4378. particle2.Speed = NumberRange.new(1.7)
  4379. particle2.SpreadAngle = Vector2.new(999,999)
  4380. particle2.Name = "ssj2electric"
  4381. particle2.EmissionDirection = Enum.NormalId.Top
  4382.  
  4383. local particle3 = Instance.new("ParticleEmitter",tor)
  4384. particle3.Color = ColorSequence.new(Color3.fromRGB(44, 195, 252))
  4385. particle3.LightEmission = 1.75
  4386. particle3.LightInfluence = 0.5
  4387. particle3.Transparency = NumberSequence.new(0.89)
  4388. particle3.Acceleration = Vector3.new(0,0.04,0)
  4389. particle3.Size = NumberSequence.new(2.9)
  4390. particle3.Texture = "rbxassetid://1045690145"
  4391. particle3.ZOffset = 0
  4392. particle3.LockedToPart = true
  4393. particle3.Enabled = true
  4394. particle3.Lifetime = NumberRange.new(0.09)
  4395. particle3.Rate = 10
  4396. particle3.Rotation = NumberRange.new(-360,360)
  4397. particle3.Speed = NumberRange.new(1.7)
  4398. particle3.SpreadAngle = Vector2.new(999,999)
  4399. particle3.Name = "ssj2electric"
  4400. particle3.EmissionDirection = Enum.NormalId.Top
  4401. end
  4402.  
  4403. being = false
  4404.  
  4405. ssj2 = true
  4406.  
  4407. if fullpowerssj == true then
  4408. wait(0.1)
  4409. hum.WalkSpeed = 99.999999999999999999999999999999999999
  4410. hum.JumpPower = 99.999999999999999999999999999999999999
  4411. hed.face.Texture = "rbxassetid://231488725"
  4412. end
  4413.  
  4414. end
  4415. end
  4416. end
  4417. end
  4418.  
  4419. end
  4420.  
  4421.  
  4422. function sss3()
  4423.  
  4424. if ssj1 == true or fullpowerssj == true then
  4425. if being == false then
  4426. if ssj2 == true then
  4427. if normal == false then
  4428. being = true
  4429.  
  4430. if fullpowerssj == true then
  4431. already3 = true
  4432. end
  4433.  
  4434. if already3 == true then
  4435. chatfunc("And this... is.. to go...")
  4436. wait(2.99)
  4437. chatfunc("Even further beyond!")
  4438. wait(2)
  4439. if ssj2 == true then
  4440. Mus.SoundId = "rbxassetid://1501944121"
  4441. Mus.Volume = 10
  4442. Mus:Play()
  4443. end
  4444. chatfunc("HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA")
  4445. wait(5)
  4446. end
  4447. end
  4448.  
  4449. already3 = true
  4450.  
  4451. if ssj2 == true then
  4452.  
  4453. rock = true
  4454.  
  4455.  
  4456. wait(2)
  4457.  
  4458. rock = false
  4459.  
  4460. end
  4461.  
  4462. hum.WalkSpeed = 0
  4463. hum.JumpPower = 0
  4464.  
  4465. if ssj2 == true then
  4466.  
  4467. wait(.5)
  4468.  
  4469. rock3 = true
  4470. wait(1)
  4471. rock3 = false
  4472.  
  4473. end
  4474.  
  4475. if ssj2 == true then
  4476. Mesh.MeshId = "rbxassetid://431511681"
  4477. Mesh.Scale = Vector3.new(0.0055,0.005,0.0055)
  4478. Weld1.C0 = CFrame.new(0.3, -1, 1.45) * CFrame.Angles(0,rad(180),0)
  4479. Hair7.Color = Color3.fromRGB(255,255,0)
  4480. ape51.Color = Color3.fromRGB(255,255,0)
  4481. hed.face.Texture = "rbxassetid://231488725"
  4482.  
  4483.  
  4484. if ssj2 == true then
  4485. hum.WalkSpeed = 130
  4486. hum.JumpPower = 150
  4487. hum.MaxHealth = math.huge
  4488. hum.Health = 80000000
  4489. end
  4490.  
  4491. local ssj3aura = Instance.new("ParticleEmitter",tor)
  4492. ssj3aura.Name = "ssj2aura"
  4493. ssj3aura.Texture = "rbxassetid://241992237"
  4494. ssj3aura.Transparency = NumberSequence.new(0.425)
  4495. ssj3aura.Color = ColorSequence.new(Color3.fromRGB(255,255,25))
  4496. ssj3aura.LightEmission = 1
  4497. ssj3aura.Size = NumberSequence.new(6)
  4498. ssj3aura.Lifetime = NumberRange.new(0.5)
  4499. ssj3aura.Rate = 19
  4500. ssj3aura.ZOffset = 0
  4501. ssj3aura.Speed = NumberRange.new(10)
  4502. ssj3aura.LockedToPart = true
  4503.  
  4504. local ssj3aura3 = Instance.new("ParticleEmitter",tor)
  4505. ssj3aura3.Name = "ssj2aura2"
  4506. ssj3aura3.Texture = "rbxassetid://1072507908"
  4507. ssj3aura3.Transparency = NumberSequence.new(0.555)
  4508. ssj3aura3.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  4509. ssj3aura3.LightEmission = 0.75
  4510. ssj3aura3.Size = NumberSequence.new(6)
  4511. ssj3aura3.Lifetime = NumberRange.new(0.5)
  4512. ssj3aura3.Rate = 19
  4513. ssj3aura3.ZOffset = -1
  4514. ssj3aura3.Speed = NumberRange.new(10)
  4515. ssj3aura3.LockedToPart = true
  4516.  
  4517. local particle = Instance.new("ParticleEmitter",hrp)
  4518. particle.Color = ColorSequence.new(Color3.fromRGB(0, 189, 255))
  4519. particle.LightEmission = 0.5
  4520. particle.LightInfluence = 0
  4521. particle.Transparency = NumberSequence.new(0)
  4522. particle.Acceleration = Vector3.new(0,0.04,0)
  4523. particle.Size = NumberSequence.new(2.9)
  4524. particle.Texture = "rbxassetid://1045690145"
  4525. particle.ZOffset = 1
  4526. particle.LockedToPart = true
  4527. particle.Enabled = true
  4528. particle.Lifetime = NumberRange.new(0.09)
  4529. particle.Rate = 10
  4530. particle.Rotation = NumberRange.new(-360,360)
  4531. particle.Speed = NumberRange.new(1.7)
  4532. particle.SpreadAngle = Vector2.new(999,999)
  4533. particle.Name = "ssj2electric"
  4534. particle.EmissionDirection = Enum.NormalId.Bottom
  4535.  
  4536. sss3 = true
  4537.  
  4538. end
  4539. end
  4540. end
  4541. end
  4542. end
  4543.  
  4544. function ass2()
  4545.  
  4546. if normal == false then
  4547. if ssj1 == true then
  4548. if being == false then
  4549. if ssj2 == true then
  4550. if assj2 == false then
  4551. being = true
  4552.  
  4553. rock = true
  4554.  
  4555. wait(.25)
  4556.  
  4557. hum.WalkSpeed = 0
  4558. hum.JumpPower = 0
  4559.  
  4560. wait(.5)
  4561.  
  4562. Mus.SoundId = "rbxassetid://346647807"
  4563. Mus.Pitch = 0.69
  4564. Mus.Volume = 5
  4565. Mus:Play()
  4566.  
  4567. rock3 = true
  4568.  
  4569. local Mus2 = Instance.new("Sound",char)
  4570. Mus2.SoundId = "rbxassetid://301184111"
  4571. Mus2.Volume = 4
  4572. Mus2.Looped = false
  4573. Mus2:Play()
  4574.  
  4575. wait(.25)
  4576.  
  4577. rock = false
  4578.  
  4579. wait(0.999)
  4580.  
  4581. local num = 0
  4582. local a21e = Instance.new("Part",char)
  4583. a21e.Name = "Beam"..num
  4584. a21e.Locked = true
  4585. a21e.Size = Vector3.new(1,1,1)
  4586. a21e.CanCollide = false
  4587. a21e.Position = Vector3.new(999,999,999)
  4588. a21e.BrickColor = BrickColor.new("White")
  4589. a21e.Material = "Neon"
  4590. a21e.Transparency = 0
  4591. local aa21e = Instance.new("SpecialMesh",a21e)
  4592. a21e.Anchored = true
  4593. a21e.Position = hrp.Position
  4594. aa21e.MeshType = "Sphere"
  4595. aa21e.Scale = Vector3.new(1,1,1)
  4596.  
  4597. tor.ssj2aura.Transparency = NumberSequence.new(0.794)
  4598. tor.ssj2aura2.Transparency = NumberSequence.new(0.958)
  4599. tor.ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  4600. tor.ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  4601. tor.ssj2aura2.Name = "control"
  4602.  
  4603. local particle = Instance.new("ParticleEmitter",tor)
  4604. particle.Color = ColorSequence.new(Color3.fromRGB(200, 192, 255))
  4605. particle.LightEmission = 0.59
  4606. particle.LightInfluence = 0
  4607. particle.Transparency = NumberSequence.new(0)
  4608. particle.Acceleration = Vector3.new(0,0.04,0)
  4609. particle.Size = NumberSequence.new(2.9)
  4610. particle.Texture = "rbxassetid://1045690145"
  4611. particle.ZOffset = -1
  4612. particle.LockedToPart = true
  4613. particle.Enabled = true
  4614. particle.Lifetime = NumberRange.new(0.09)
  4615. particle.Rate = 15
  4616. particle.Rotation = NumberRange.new(-360,360)
  4617. particle.Speed = NumberRange.new(1.7)
  4618. particle.SpreadAngle = Vector2.new(999,999)
  4619. particle.Name = "electricity"
  4620. particle.EmissionDirection = Enum.NormalId.Top
  4621.  
  4622. hrp.ssj2electric.Color = ColorSequence.new(Color3.fromRGB(200, 192, 255))
  4623. hrp.ssj2electric.LightEmission = 0.59
  4624. hrp.ssj2electric.LightInfluence = 0
  4625. hrp.ssj2electric.Transparency = NumberSequence.new(0)
  4626. hrp.ssj2electric.EmissionDirection = Enum.NormalId.Top
  4627. hrp.ssj2electric.Name = "electricity"
  4628.  
  4629. Mus1:Play()
  4630.  
  4631. chatfunc("You can name this 'Mystic'.")
  4632.  
  4633. for i = 1,15 do
  4634.  
  4635. char.Hair:Remove()
  4636.  
  4637. Hair7 = Instance.new("Part")
  4638. Hair7.Parent = p.Character
  4639. Hair7.Name = "Hair"
  4640. Hair7.CanCollide = false
  4641. Hair7.Locked = true
  4642. Hair7.TopSurface = "Smooth"
  4643. Hair7.BottomSurface = "Smooth"
  4644. Hair7.formFactor = "Symmetric"
  4645. Hair7.Material = "Neon"
  4646. Hair7.BrickColor = BrickColor.new("Really black")
  4647. Hair7.CFrame = p.Character.Torso.CFrame
  4648. Hair7.Size = Vector3.new(1, 1, 1)
  4649. Hair7.Transparency = 0
  4650.  
  4651. Weld1 = Instance.new("Weld")
  4652. Weld1.Parent = p.Character.Head
  4653. Weld1.Part0 = p.Character.Head
  4654. Weld1.Part1 = Hair7
  4655. Weld1.C0 = CFrame.new(0, 1, 0)
  4656.  
  4657. Mesh = Instance.new("SpecialMesh")
  4658. Mesh.Offset = Vector3.new(0.2, -0.2, 0.2)
  4659. Mesh.Parent = Hair7
  4660. Mesh.Scale = Vector3.new(1, 1, 1)
  4661. Mesh.MeshType = "FileMesh"
  4662. Mesh.MeshId = "http://www.roblox.com/asset/?id=476757756"
  4663. Mesh.TextureId = ""
  4664.  
  4665. ape51.Color = Color3.fromRGB(106,57,8)
  4666.  
  4667. hed.face.Texture = "rbxassetid://967842214"
  4668.  
  4669. wait(.025)
  4670. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  4671. wait(.05)
  4672. a21e.Transparency = a21e.Transparency + 0.1
  4673. end
  4674.  
  4675. wait(.1)
  4676.  
  4677. a21e:Remove()
  4678.  
  4679. hum.WalkSpeed = 80
  4680. hum.JumpPower = 95
  4681.  
  4682. being = false
  4683.  
  4684. assj2 = true
  4685.  
  4686. end
  4687. end
  4688. end
  4689. end
  4690. end
  4691. end
  4692.  
  4693. function Lightning1(pos,pos2,radius,numParts,model)
  4694. if fullpowerssj == true or ssj2 == true or ssjwhite == true then
  4695. radius = radius or 0.2
  4696. numParts = numParts or 10
  4697. model = model or workspace
  4698. local lv = CFrame.new(pos,pos2).lookVector
  4699. local dist = (pos-pos2).magnitude
  4700. local dbp = dist/numParts
  4701. local last = pos
  4702. for i = 1,numParts do
  4703. local p = Instance.new("Part",model)
  4704. p.FormFactor = "Symmetric"
  4705. p.Size = Vector3.new(14,14,1)
  4706. p.Material = "Neon"
  4707. p.CanCollide = false
  4708. p.Anchored = true
  4709. p.BrickColor = BrickColor.new("Bright bluish green")
  4710. local x = math.random(-100,100)/100*dbp/2
  4711. local y = math.random(-100,100)/100*dbp/2
  4712. local p2 = CFrame.new(pos+lv*(i*dbp),pos2+lv)*CFrame.new(x,y,0)
  4713. local dist2 = (p2.p-last).magnitude
  4714. local mid = (p2.p+last)/2
  4715. local m = Instance.new("BlockMesh",p)
  4716. m.Scale = Vector3.new(radius,radius,dist2)
  4717. p.CFrame = CFrame.new(mid,p2.p)
  4718. last = p2.p
  4719. game:GetService("Debris"):AddItem(p,math.random(40,100)/1000)
  4720. end
  4721. end;end
  4722.  
  4723. function ssj4()
  4724.  
  4725. if normal == false then
  4726. if ssj1 == true then
  4727. if being == false then
  4728. if ssj2 == true then
  4729. if assj2 == false then
  4730. being = true
  4731. assj3 = true
  4732.  
  4733. rock = true
  4734.  
  4735. wait(.25)
  4736.  
  4737. hum.WalkSpeed = 0
  4738. hum.JumpPower = 0
  4739.  
  4740. wait(.5)
  4741.  
  4742. Mus.SoundId = "rbxassetid://155166013"
  4743. Mus.Pitch = 0.69
  4744. Mus.Volume = 10
  4745. Mus:Play()
  4746.  
  4747. rock3 = true
  4748.  
  4749. local Mus2 = Instance.new("Sound",char)
  4750. Mus2.SoundId = "rbxassetid://301184111"
  4751. Mus2.Volume = 4
  4752. Mus2.Looped = false
  4753. Mus2:Play()
  4754.  
  4755. wait(.25)
  4756.  
  4757. rock = false
  4758.  
  4759. wait(0.999)
  4760.  
  4761. GroundShake = true
  4762. GroundShake2 = true
  4763.  
  4764. wait(1)
  4765.  
  4766. GroundShake = false
  4767. GroundShake2 = false
  4768.  
  4769. coroutine.wrap(function()
  4770. for i = 1,5 do
  4771. if ssjwhite == true then
  4772. wait(math.random(1,2))
  4773.  
  4774. local block = Instance.new("Part",char)
  4775. block.Anchored = true
  4776. block.Transparency = 1
  4777. block.Position = hrp.Position + Vector3.new(math.random(-25,29),-3,math.random(-25,29))
  4778. block.CanCollide = false
  4779. local block2 = Instance.new("Part",char)
  4780. block2.Anchored = true
  4781. block2.Position = block.Position + Vector3.new(0,200,0)
  4782. block2.CanCollide = false
  4783. block2.Transparency = 1
  4784.  
  4785. wait(.05)
  4786. Lightning1(block.Position,block2.Position,1,15,workspace)
  4787. rock3 = true
  4788. wait(.09)
  4789. block:Remove()
  4790. end;end
  4791. end)()
  4792.  
  4793. local num = 0
  4794. local a21e = Instance.new("Part",char)
  4795. a21e.Name = "Beam"..num
  4796. a21e.Locked = true
  4797. a21e.Size = Vector3.new(1,1,1)
  4798. a21e.CanCollide = false
  4799. a21e.Position = Vector3.new(999,999,999)
  4800. a21e.BrickColor = BrickColor.new("Really red")
  4801. a21e.Material = "Neon"
  4802. a21e.Transparency = 0
  4803. local aa21e = Instance.new("SpecialMesh",a21e)
  4804. a21e.Anchored = true
  4805. a21e.Position = hrp.Position
  4806. aa21e.MeshType = "Sphere"
  4807. aa21e.Scale = Vector3.new(1,1,1)
  4808.  
  4809. tor.ssj2aura.Transparency = NumberSequence.new(0.794)
  4810. tor.ssj2aura2.Transparency = NumberSequence.new(0.958)
  4811. tor.ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,255,19))
  4812. tor.ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,19,70))
  4813. tor.ssj2aura2.Name = "control"
  4814.  
  4815. local particle = Instance.new("ParticleEmitter",tor)
  4816. particle.Color = ColorSequence.new(Color3.fromRGB(255, 255, 70))
  4817. particle.LightEmission = 0.59
  4818. particle.LightInfluence = 0
  4819. particle.Transparency = NumberSequence.new(0)
  4820. particle.Acceleration = Vector3.new(0,0.04,0)
  4821. particle.Size = NumberSequence.new(2.9)
  4822. particle.Texture = "rbxassetid://1045690145"
  4823. particle.ZOffset = -1
  4824. particle.LockedToPart = true
  4825. particle.Enabled = true
  4826. particle.Lifetime = NumberRange.new(0.09)
  4827. particle.Rate = 15
  4828. particle.Rotation = NumberRange.new(-360,360)
  4829. particle.Speed = NumberRange.new(1.7)
  4830. particle.SpreadAngle = Vector2.new(999,999)
  4831. particle.Name = "electricity"
  4832. particle.EmissionDirection = Enum.NormalId.Top
  4833.  
  4834. local particle2 = Instance.new("ParticleEmitter",tor)
  4835. particle2.Color = ColorSequence.new(Color3.fromRGB(255, 200, 0))
  4836. particle2.LightEmission = 0.59
  4837. particle2.LightInfluence = 0
  4838. particle2.Transparency = NumberSequence.new(0)
  4839. particle2.Acceleration = Vector3.new(0,0.04,0)
  4840. particle2.Size = NumberSequence.new(2.9)
  4841. particle2.Texture = "rbxassetid://1045690145"
  4842. particle2.ZOffset = -1
  4843. particle2.LockedToPart = true
  4844. particle2.Enabled = true
  4845. particle2.Lifetime = NumberRange.new(0.09)
  4846. particle2.Rate = 15
  4847. particle2.Rotation = NumberRange.new(-360,360)
  4848. particle2.Speed = NumberRange.new(1.7)
  4849. particle2.SpreadAngle = Vector2.new(999,999)
  4850. particle2.Name = "electricity"
  4851. particle2.EmissionDirection = Enum.NormalId.Top
  4852.  
  4853. hrp.ssj2electric.Color = ColorSequence.new(Color3.fromRGB(255, 200, 0))
  4854. hrp.ssj2electric.LightEmission = 0.59
  4855. hrp.ssj2electric.LightInfluence = 0
  4856. hrp.ssj2electric.Transparency = NumberSequence.new(0)
  4857. hrp.ssj2electric.EmissionDirection = Enum.NormalId.Top
  4858. hrp.ssj2electric.Name = "electricity"
  4859.  
  4860. Mus1:Play()
  4861.  
  4862. char.Hair:Remove()
  4863.  
  4864. Hair7 = Instance.new("Part")
  4865. Hair7.Parent = p.Character
  4866. Hair7.Name = "Hair"
  4867. Hair7.CanCollide = false
  4868. Hair7.Locked = true
  4869. Hair7.TopSurface = "Smooth"
  4870. Hair7.BottomSurface = "Smooth"
  4871. Hair7.formFactor = "Symmetric"
  4872. Hair7.Material = "Neon"
  4873. Hair7.BrickColor = BrickColor.new("Really black")
  4874. Hair7.CFrame = p.Character.Torso.CFrame
  4875. Hair7.Size = Vector3.new(1, 1, 1)
  4876. Hair7.Transparency = 0
  4877.  
  4878. Weld1 = Instance.new("Weld")
  4879. Weld1.Parent = p.Character.Head
  4880. Weld1.Part0 = p.Character.Head
  4881. Weld1.Part1 = Hair7
  4882. Weld1.C0 = CFrame.new(0, 1, 0)
  4883.  
  4884. Mesh = Instance.new("SpecialMesh")
  4885. Mesh.Offset = Vector3.new(0.2, -0.2, 0.2)
  4886. Mesh.Parent = Hair7
  4887. Mesh.Scale = Vector3.new(1, 1, 1)
  4888. Mesh.MeshType = "FileMesh"
  4889. Mesh.MeshId = "http://www.roblox.com/asset/?id=476757756"
  4890. Mesh.TextureId = ""
  4891.  
  4892. local Part2 = Instance.new("Part")
  4893. Part2.Parent = char
  4894. Part2.Name = "Part9"
  4895. Part2.CanCollide = false
  4896. Part2.Locked = true
  4897. Part2.TopSurface = "Smooth"
  4898. Part2.BottomSurface = "Smooth"
  4899. Part2.formFactor = "Symmetric"
  4900. Part2.Material = "Neon"
  4901. Part2.BrickColor = BrickColor.new("Really black")
  4902. Part2.CFrame = p.Character.Torso.CFrame
  4903. Part2.Size = Vector3.new(2,2,2)
  4904. Part2.Transparency = 0
  4905.  
  4906. local Mesh3 = Instance.new("SpecialMesh")
  4907. Mesh3.Offset = Vector3.new(0.2, -0.2, 0.2)
  4908. Mesh3.Parent = Part2
  4909. Mesh3.Scale = Vector3.new(1, 1, 1)
  4910. Mesh3.MeshType = "FileMesh"
  4911. Mesh3.MeshId = "http://www.roblox.com/asset/?id=476757756"
  4912. Mesh3.TextureId = ""
  4913.  
  4914.  
  4915. local Weld5 = Instance.new("Weld")
  4916. Weld5.Parent = p.Character.Head
  4917. Weld5.Part0 = p.Character.Head
  4918. Weld5.Part1 = Part2
  4919.  
  4920. Part2.Color = Color3.fromRGB(5,5,5)
  4921. Mesh3.MeshId = "rbxassetid://430344159"
  4922. Mesh3.Scale = Vector3.new(3.8,3.8,3.8)
  4923. Weld5.C0 = CFrame.new(-.25,1.2,.34)
  4924.  
  4925. Hair7.Color = Color3.fromRGB(26,0,0)
  4926. Part2.Color = Color3.fromRGB(26,0,0)
  4927.  
  4928. for i = 1,15 do
  4929.  
  4930. coroutine.wrap(function()
  4931. for i = 1,5 do
  4932. if ssjwhite == true then
  4933. wait(math.random(7,14))
  4934.  
  4935. local block = Instance.new("Part",char)
  4936. block.Anchored = true
  4937. block.Transparency = 1
  4938. block.Position = hrp.Position + Vector3.new(math.random(-99,44),-5,math.random(-99,44))
  4939. block.CanCollide = false
  4940. local block2 = Instance.new("Part",char)
  4941. block2.Anchored = true
  4942. block2.Position = block.Position + Vector3.new(0,200,0)
  4943. block2.CanCollide = false
  4944. block2.Transparency = 1
  4945.  
  4946. wait(.05)
  4947. Lightning1(block.Position,block2.Position,1,15,workspace)
  4948. rock3 = true
  4949. wait(.09)
  4950. block:Remove()
  4951. end;end
  4952. end)()
  4953.  
  4954. ape51.Color = Color3.fromRGB(115,0,0)
  4955.  
  4956. hed.face.Texture = "rbxassetid://231488578"
  4957.  
  4958. char.Shirt.ShirtTemplate = "rbxassetid://242294653"
  4959. char.Pants.PantsTemplate = "rbxassetid://539482020"
  4960.  
  4961. wait(.025)
  4962. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  4963. wait(.05)
  4964. a21e.Transparency = a21e.Transparency + 0.1
  4965. end
  4966.  
  4967. wait(.1)
  4968.  
  4969. a21e:Remove()
  4970.  
  4971. hum.WalkSpeed = 80
  4972. hum.JumpPower = 95
  4973.  
  4974. ssj2 = false
  4975. ssj1 = false
  4976. ssj3 = false
  4977. assj2 = false
  4978.  
  4979. ssjwhite = true
  4980.  
  4981. if already == false then
  4982. wait(.2)
  4983.  
  4984. chatfunc("This is the fourth stage of the super saiyan form,")
  4985.  
  4986. wait(2.4)
  4987.  
  4988. chatfunc("The Super Saiyan 4.")
  4989. end
  4990.  
  4991. if already == true then
  4992. chatfunc("Feel the power of a Super Saiyan 4!")
  4993. end
  4994.  
  4995.  
  4996. already = true
  4997.  
  4998. wait(.1)
  4999.  
  5000. being = false
  5001. assj3 = false
  5002.  
  5003. end
  5004. end
  5005. end
  5006. end
  5007. end
  5008. end
  5009.  
  5010. function ss3()
  5011.  
  5012. if normal == false then
  5013. if ssj1 == true or fullpowerssj == true then
  5014. if being == false then
  5015. if ssj2 == true then
  5016. if assj2 == false then
  5017. if ssj3 == false then
  5018. being = true
  5019.  
  5020. if already2 == false then
  5021. chatfunc("TIME TO ASCEND!")
  5022. wait(1.9)
  5023. chatfunc("EVEN FURTHER BEYOND!!")
  5024. wait(1.99)
  5025. chatfunc("OVER SUPER SAIYAN 2!!!")
  5026. wait(1.999)
  5027. chatfunc("GRRRR!!!!! HAAAAAAAAAA!!!!!!!!!!!!!!!!!")
  5028. end
  5029.  
  5030. if already2 == true then
  5031. chatfunc("I call this, 'Uncontrolled', SUPER SAIYAN 2!!!")
  5032. wait(3.79)
  5033. chatfunc("GRRRR!!!!! HAAAAAAAAAA!!!!!!!!!!!!!!!!!")
  5034. end
  5035.  
  5036. hed.face.Texture = "rbxassetid://1177818030"
  5037.  
  5038. local ssj9aura = Instance.new("ParticleEmitter",tor)
  5039. ssj9aura.Name = "control"
  5040. ssj9aura.Texture = "rbxassetid://241992237"
  5041. ssj9aura.Transparency = NumberSequence.new(0.425)
  5042. ssj9aura.Color = ColorSequence.new(Color3.fromRGB(255,255,25))
  5043. ssj9aura.LightEmission = 1
  5044. ssj9aura.Size = NumberSequence.new(6)
  5045. ssj9aura.Lifetime = NumberRange.new(0.5)
  5046. ssj9aura.Rate = 19
  5047. ssj9aura.Speed = NumberRange.new(10)
  5048. ssj9aura.LockedToPart = true
  5049. ssj9aura.ZOffset = -3
  5050.  
  5051. local ssj9aura2 = Instance.new("ParticleEmitter",tor)
  5052. ssj9aura2.Name = "control2"
  5053. ssj9aura2.Texture = "rbxassetid://1072507908"
  5054. ssj9aura2.Transparency = NumberSequence.new(0.555)
  5055. ssj9aura2.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  5056. ssj9aura2.LightEmission = 0.75
  5057. ssj9aura2.Size = NumberSequence.new(6)
  5058. ssj9aura2.Lifetime = NumberRange.new(0.5)
  5059. ssj9aura2.Rate = 19
  5060. ssj9aura2.ZOffset = -1
  5061. ssj9aura2.Speed = NumberRange.new(10)
  5062. ssj9aura2.LockedToPart = true
  5063. ssj9aura2.ZOffset = -3
  5064. Mus.Pitch = 1
  5065.  
  5066. already2 = true
  5067.  
  5068. hrp.ssj2electric.Size = NumberSequence.new(3)
  5069. hrp.ssj2electric.ZOffset = 2
  5070.  
  5071. hrp.ssj2electric.Color = ColorSequence.new(Color3.fromRGB(124,199,75))
  5072. hrp.ssj2electric.EmissionDirection = Enum.NormalId.Top
  5073.  
  5074. tor.ssj2aura.Transparency = NumberSequence.new(0.925)
  5075. tor.ssj2aura2.Transparency = NumberSequence.new(0.869)
  5076.  
  5077. tor.ssj2aura2.Enabled = false
  5078. tor.ssj2aura.Enabled = false
  5079.  
  5080. hrp.ssj2electric.Enabled = false
  5081.  
  5082. hrp.ssj2electric.Transparency = NumberSequence.new(0.9)
  5083.  
  5084. Mus:Stop()
  5085. Mus.SoundId = "rbxassetid://561542239"
  5086. Mus:Play()
  5087.  
  5088. wait(.25)
  5089.  
  5090. hum.WalkSpeed = 0
  5091. hum.JumpPower = 0
  5092.  
  5093. rock = true
  5094.  
  5095. wait(.5)
  5096.  
  5097. rock3 = true
  5098.  
  5099. wait(.25)
  5100.  
  5101. GroundShake = true
  5102.  
  5103. coroutine.wrap(function()
  5104. for i = 1,5 do
  5105. if ssj2 == true then
  5106. wait(math.random(1,2))
  5107.  
  5108. local block = Instance.new("Part",char)
  5109. block.Anchored = true
  5110. block.Transparency = 1
  5111. block.Position = hrp.Position + Vector3.new(math.random(-25,29),-3,math.random(-25,29))
  5112. block.CanCollide = false
  5113. local block2 = Instance.new("Part",char)
  5114. block2.Anchored = true
  5115. block2.Position = block.Position + Vector3.new(0,200,0)
  5116. block2.CanCollide = false
  5117. block2.Transparency = 1
  5118.  
  5119. wait(.05)
  5120. Lightning1(block.Position,block2.Position,1,15,workspace)
  5121. rock3 = true
  5122. wait(.09)
  5123. block:Remove()
  5124. end;end
  5125. end)()
  5126.  
  5127. wait(5)
  5128.  
  5129. local Mus2 = Instance.new("Sound",char)
  5130. Mus2.SoundId = "rbxassetid://1187787862"
  5131. Mus2.Volume = 10
  5132. Mus2.Looped = false
  5133. Mus2:Play()
  5134.  
  5135. wait(2.999)
  5136.  
  5137. local num = 0
  5138. local a21e = Instance.new("Part",char)
  5139. a21e.Name = "Beam"..num
  5140. a21e.Locked = true
  5141. a21e.Size = Vector3.new(1,1,1)
  5142. a21e.CanCollide = false
  5143. a21e.Position = Vector3.new(999,999,999)
  5144. a21e.BrickColor = BrickColor.new("Bright yellow")
  5145. a21e.Material = "Neon"
  5146. a21e.Transparency = 0
  5147. local aa21e = Instance.new("SpecialMesh",a21e)
  5148. a21e.Anchored = true
  5149. a21e.Position = hrp.Position
  5150. aa21e.MeshType = "Sphere"
  5151. aa21e.Scale = Vector3.new(1,1,1)
  5152.  
  5153. local a22e = Instance.new("Part",char)
  5154. a22e.Name = "Bear"
  5155. a22e.Locked = true
  5156. a22e.Size = Vector3.new(1,1,1)
  5157. a22e.CanCollide = false
  5158. a22e.Position = Vector3.new(999,999,999)
  5159. a22e.BrickColor = BrickColor.new("Gold")
  5160. a22e.Material = "Neon"
  5161. a22e.Transparency = 0
  5162. local aa22e = Instance.new("SpecialMesh",a22e)
  5163. a22e.Anchored = true
  5164. a22e.Position = hrp.Position
  5165. aa22e.MeshType = "Sphere"
  5166. aa22e.Scale = Vector3.new(1,1,1)
  5167.  
  5168. Mus1:Play()
  5169.  
  5170. for i = 1,15 do
  5171.  
  5172. ssj9aura2.Color = ColorSequence.new(Color3.fromRGB(219, 255, 82))
  5173. ssj9aura.Color = ColorSequence.new(Color3.fromRGB(219, 255, 82))
  5174.  
  5175.  
  5176. Hair7.Color = Color3.fromRGB(209, 255, 82)
  5177. ape51.Color = Color3.fromRGB(229, 255, 82)
  5178.  
  5179. hed.face.Texture = "rbxassetid://1184186633"
  5180.  
  5181. wait(.025)
  5182. aa21e.Scale = aa21e.Scale + Vector3.new(12,12,12)
  5183. wait(.05)
  5184. a21e.Transparency = a21e.Transparency + 0.1
  5185.  
  5186. wait(.025)
  5187. aa22e.Scale = aa22e.Scale + Vector3.new(6,6,6)
  5188. wait(.05)
  5189. a22e.Transparency = a22e.Transparency + 0.1
  5190.  
  5191. end
  5192.  
  5193. wait(.1)
  5194.  
  5195. GroundShake = false
  5196.  
  5197. a21e:Remove()
  5198.  
  5199. hum.WalkSpeed = 89
  5200. hum.JumpPower = 99
  5201.  
  5202. being = false
  5203.  
  5204. tor.ssj2aura2.Name = "ssj3aura"
  5205. tor.ssj2aura.Name = "aura"
  5206. tor.aura.ZOffset = -2
  5207. tor.ssj3aura.ZOffset = -2
  5208.  
  5209. local ssj3aura = Instance.new("ParticleEmitter",tor)
  5210. ssj3aura.Name = "ssj3aura2"
  5211. ssj3aura.Texture = "rbxassetid://241992237"
  5212. ssj3aura.Transparency = NumberSequence.new(0.8245)
  5213. ssj3aura.Color = ColorSequence.new(Color3.fromRGB(99,255,47))
  5214. ssj3aura.LightEmission = 1
  5215. ssj3aura.Size = NumberSequence.new(6)
  5216. ssj3aura.Lifetime = NumberRange.new(0.5)
  5217. ssj3aura.Rate = 29
  5218. ssj3aura.ZOffset = -1
  5219. ssj3aura.Speed = NumberRange.new(10)
  5220. ssj3aura.LockedToPart = true
  5221.  
  5222. local ssj3aura2 = Instance.new("ParticleEmitter",tor)
  5223. ssj3aura2.Name = "ssj3aura3"
  5224. ssj3aura2.Texture = "rbxassetid://241992237"
  5225. ssj3aura2.Transparency = NumberSequence.new(0.7245)
  5226. ssj3aura2.Color = ColorSequence.new(Color3.fromRGB(119,255,29))
  5227. ssj3aura2.LightEmission = 0.75
  5228. ssj3aura2.Size = NumberSequence.new(7)
  5229. ssj3aura2.Lifetime = NumberRange.new(0.51)
  5230. ssj3aura2.Rate = 35
  5231. ssj3aura2.ZOffset = -1
  5232. ssj3aura2.Speed = NumberRange.new(9)
  5233. ssj3aura2.LockedToPart = true
  5234.  
  5235. tor.aura.Enabled = true
  5236. tor.ssj3aura.Enabled = true
  5237.  
  5238. hrp.ssj2electric.Enabled = true
  5239.  
  5240. tor.ssj3aura.Color = ColorSequence.new(Color3.fromRGB(169, 234, 82))
  5241. tor.aura.Color = ColorSequence.new(Color3.fromRGB(169, 234, 82))
  5242.  
  5243. tor.ssj3aura.Texture = "rbxassetid://639676034"
  5244. tor.aura.Texture = "rbxassetid://639676855"
  5245.  
  5246. available = true
  5247.  
  5248. auracan2 = true
  5249.  
  5250. ssj3 = true
  5251.  
  5252. end
  5253. end
  5254. end
  5255. end
  5256. end
  5257. end
  5258.  
  5259. end
  5260.  
  5261. function ssg()
  5262.  
  5263. if ssjg == false and ssj1 == false and ssjb == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false or ssjb == true then
  5264. if being == false then
  5265. ssjb = false
  5266. if ssjbk == true then
  5267. ssjbk = false
  5268. kaioken = false
  5269. kaioken10 = false
  5270. kaioken20 = false
  5271. end
  5272. being = true
  5273.  
  5274. chatfunc("Super Saiyan God.")
  5275.  
  5276. Mus.Pitch = 1
  5277.  
  5278. for _,v in pairs(tor:GetChildren()) do
  5279. if v.ClassName == "ParticleEmitter" then
  5280. v:Remove()
  5281. end
  5282. end
  5283.  
  5284. for _,v in pairs(char:GetChildren()) do
  5285. if v.Name == "leg2" or v.Name == "leg1" or v.Name == "arm1" or v.Name == "arm2" or v.Name == "tors" or v.Name == "hed" then
  5286. v:Remove()
  5287. end
  5288. end
  5289.  
  5290. Mus.SoundId = "rbxassetid://1457801760"
  5291. Mus:Play()
  5292.  
  5293. Mus1:Play()
  5294.  
  5295. Weld1.C0 = CFrame.new(0, 1, 0)
  5296.  
  5297. Mesh = Instance.new("SpecialMesh")
  5298. Mesh.Offset = Vector3.new(0.2, -0.2, 0.2)
  5299. Mesh.Parent = Hair7
  5300. Mesh.Scale = Vector3.new(1, 1, 1)
  5301. Mesh.MeshType = "FileMesh"
  5302. Mesh.MeshId = "http://www.roblox.com/asset/?id=476757756"
  5303. Mesh.TextureId = ""
  5304.  
  5305. Hair7.Color = Color3.fromRGB(255,25,70)
  5306.  
  5307. ape51.Color = Color3.fromRGB(255,25,70)
  5308.  
  5309. hed.face.Texture = "rbxassetid://231488705"
  5310.  
  5311. local list = {NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(1,0.8,0)}
  5312.  
  5313. local list2 = {NumberSequenceKeypoint.new(0,0.25,0),NumberSequenceKeypoint.new(1,0.50,0)}
  5314.  
  5315. local ssjgaura = Instance.new("ParticleEmitter",tor)
  5316. ssjgaura.Name = "SSJGaura"
  5317. ssjgaura.Color = ColorSequence.new(Color3.fromRGB(255,25,70))
  5318. ssjgaura.LightEmission = 1
  5319. ssjgaura.Transparency = NumberSequence.new(list2)
  5320. ssjgaura.Size = NumberSequence.new(5)
  5321. ssjgaura.Lifetime = NumberRange.new(0.9)
  5322. ssjgaura.Rate = 89
  5323. ssjgaura.ZOffset = -5.5
  5324. ssjgaura.Speed = NumberRange.new(5)
  5325. ssjgaura.LockedToPart = true
  5326.  
  5327. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  5328. ssjgaurag.Name = "SSGaura"
  5329. ssjgaurag.Color = ColorSequence.new(Color3.fromRGB(255,175,80))
  5330. ssjgaurag.LightEmission = 0.75
  5331. ssjgaurag.Transparency = NumberSequence.new(list)
  5332. ssjgaurag.Size = NumberSequence.new(5)
  5333. ssjgaurag.Lifetime = NumberRange.new(0.99)
  5334. ssjgaurag.Rate = 89
  5335. ssjgaurag.ZOffset = -2.5
  5336. ssjgaurag.Speed = NumberRange.new(5.999)
  5337. ssjgaurag.SpreadAngle = Vector2.new(0.9,0.99)
  5338. ssjgaurag.LockedToPart = true
  5339.  
  5340. ssjgaura.Texture = "rbxassetid://256159034"
  5341. ssjgaurag.Texture = "rbxassetid://256159034"
  5342.  
  5343. local num = 0
  5344. local a21e = Instance.new("Part",char)
  5345. a21e.Name = "Beam"..num
  5346. a21e.Locked = true
  5347. a21e.Size = Vector3.new(1,1,1)
  5348. a21e.CanCollide = false
  5349. a21e.Position = Vector3.new(999,999,999)
  5350. a21e.BrickColor = BrickColor.new("Persimmon")
  5351. a21e.Material = "Neon"
  5352. a21e.Transparency = 0
  5353. local aa21e = Instance.new("SpecialMesh",a21e)
  5354. a21e.Anchored = true
  5355. a21e.Position = hrp.Position
  5356. aa21e.MeshType = "Sphere"
  5357. aa21e.Scale = Vector3.new(1,1,1)
  5358.  
  5359. for i = 1,25 do
  5360. wait()
  5361. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  5362. a21e.Transparency = a21e.Transparency + 0.04
  5363. end
  5364.  
  5365. wait(.1)
  5366.  
  5367. a21e:Remove()
  5368.  
  5369. wait()
  5370.  
  5371. hum.WalkSpeed = 100
  5372. hum.JumpPower = 100
  5373. hum.MaxHealth = math.huge
  5374. hum.Health = 52000000000
  5375.  
  5376. being = false
  5377.  
  5378. ssjg = true
  5379.  
  5380. --available = true
  5381.  
  5382. normal = false
  5383.  
  5384. end
  5385. end
  5386. end
  5387.  
  5388. function ssjr()
  5389.  
  5390. if ssjg == false and ssj1 == false and ssjb == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false or ssjb == true then
  5391. if being == false then
  5392. ssjb = false
  5393. if ssjbk == true then
  5394. ssjbk = false
  5395. kaioken = false
  5396. kaioken10 = false
  5397. kaioken20 = false
  5398. end
  5399. being = true
  5400.  
  5401. chatfunc("I am surprised a human has reached that point.")
  5402. wait(4)
  5403. chatfunc("As a reward i'll show you something...")
  5404. wait(3.5)
  5405.  
  5406. GroundWaveR()
  5407. wait(1.5)
  5408.  
  5409. Mus.Pitch = 1
  5410.  
  5411. for _,v in pairs(tor:GetChildren()) do
  5412. if v.ClassName == "ParticleEmitter" then
  5413. v:Remove()
  5414. end
  5415. end
  5416.  
  5417. for _,v in pairs(char:GetChildren()) do
  5418. if v.Name == "leg2" or v.Name == "leg1" or v.Name == "arm1" or v.Name == "arm2" or v.Name == "tors" or v.Name == "hed" then
  5419. v:Remove()
  5420. end
  5421. end
  5422.  
  5423. Mus.SoundId = "rbxassetid://571138935"
  5424. Mus:Play()
  5425.  
  5426. Mus1:Play()
  5427.  
  5428. Hair7.Color = Color3.fromRGB(255, 0, 190)
  5429. ape51.Color = Color3.fromRGB(255, 0, 190)
  5430. Mesh.MeshId = "rbxassetid://430344159"
  5431. Mesh.Parent = Hair7
  5432. Mesh.Scale = Vector3.new(6.3,6.3,6.3)
  5433. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  5434.  
  5435. hed.face.Texture = "rbxassetid://1519829608"
  5436.  
  5437. local list = {NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(1,0.8,0)}
  5438.  
  5439. local list2 = {NumberSequenceKeypoint.new(0,0.25,0),NumberSequenceKeypoint.new(1,0.50,0)}
  5440.  
  5441. local ssjgaura = Instance.new("ParticleEmitter",tor)
  5442. ssjgaura.Name = "SSJGaura"
  5443. ssjgaura.Color = ColorSequence.new(Color3.fromRGB(150,0,150))
  5444. ssjgaura.LightEmission = 1
  5445. ssjgaura.Transparency = NumberSequence.new(list2)
  5446. ssjgaura.Size = NumberSequence.new(5)
  5447. ssjgaura.Lifetime = NumberRange.new(0.9)
  5448. ssjgaura.Rate = 89
  5449. ssjgaura.ZOffset = -5.5
  5450. ssjgaura.Speed = NumberRange.new(3)
  5451. ssjgaura.LockedToPart = true
  5452.  
  5453. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  5454. ssjgaurag.Name = "SSGaura"
  5455. ssjgaurag.Color = ColorSequence.new(Color3.fromRGB(255,0,190))
  5456. ssjgaurag.LightEmission = 0.75
  5457. ssjgaurag.Transparency = NumberSequence.new(list)
  5458. ssjgaurag.Size = NumberSequence.new(5)
  5459. ssjgaurag.Lifetime = NumberRange.new(0.99)
  5460. ssjgaurag.Rate = 89
  5461. ssjgaurag.ZOffset = -2.5
  5462. ssjgaurag.Speed = NumberRange.new(3.999)
  5463. ssjgaurag.SpreadAngle = Vector2.new(0.9,0.99)
  5464. ssjgaurag.LockedToPart = true
  5465.  
  5466. ssjgaura.Texture = "rbxassetid://256159034"
  5467. ssjgaurag.Texture = "rbxassetid://256159034"
  5468.  
  5469. local num = 0
  5470. local a21e = Instance.new("Part",char)
  5471. a21e.Name = "Beam"..num
  5472. a21e.Locked = true
  5473. a21e.Size = Vector3.new(1,1,1)
  5474. a21e.CanCollide = false
  5475. a21e.Position = Vector3.new(999,999,999)
  5476. a21e.BrickColor = BrickColor.new("Pink")
  5477. a21e.Material = "Neon"
  5478. a21e.Transparency = 0
  5479. local aa21e = Instance.new("SpecialMesh",a21e)
  5480. a21e.Anchored = true
  5481. a21e.Position = hrp.Position
  5482. aa21e.MeshType = "Sphere"
  5483. aa21e.Scale = Vector3.new(1,1,1)
  5484.  
  5485. for i = 1,25 do
  5486. wait()
  5487. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  5488. a21e.Transparency = a21e.Transparency + 0.04
  5489. end
  5490.  
  5491. wait(.1)
  5492.  
  5493. a21e:Remove()
  5494.  
  5495. wait()
  5496.  
  5497. hum.WalkSpeed = 150
  5498. hum.JumpPower = 150
  5499.  
  5500. being = false
  5501.  
  5502. ssjr = true
  5503.  
  5504. --available = true
  5505.  
  5506. normal = false
  5507.  
  5508. end
  5509. end
  5510. end
  5511.  
  5512. function limitbreak()
  5513.  
  5514. if hum.Health <= 10001 then
  5515.  
  5516. if ssj1 == false and ssjb == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false and ssjb == false or ssjg == true then
  5517. if being == false then
  5518. ssjb = false
  5519. if ssjbk == true then
  5520. ssjbk = false
  5521. kaioken = false
  5522. kaioken10 = false
  5523. kaioken20 = false
  5524. end
  5525. being = true
  5526.  
  5527. chatfunc("I think i'll have to surpass my limits...")
  5528.  
  5529. wait(3.3)
  5530.  
  5531. chatfunc("Well...")
  5532.  
  5533. wait(3.48)
  5534.  
  5535. chatfunc("Here goes!")
  5536.  
  5537. wait(1)
  5538.  
  5539. GroundWave9()
  5540.  
  5541. --wait(0.9)
  5542.  
  5543. --GroundShake = true
  5544. --GroundShake2 = true
  5545.  
  5546. --wait(1)
  5547.  
  5548. --GroundShake2 = false
  5549. --GroundShake = false
  5550.  
  5551. hum.WalkSpeed = 0
  5552. hum.JumpPower = 0
  5553.  
  5554. wait(2.05)
  5555.  
  5556. --GroundShake2 = true
  5557. --GroundShake = true
  5558.  
  5559. for i = 1,6 do
  5560. for _,player in pairs(game.Players:GetPlayers()) do
  5561. hum.CameraOffset = Vector3.new(math.random(-0.8,0.8),math.random(-0.9,0.9),math.random(-0.8,0.8))
  5562.  
  5563. wait()
  5564.  
  5565. --GroundShake2 = true
  5566. --GroundShake = true
  5567.  
  5568. hum.CameraOffset = Vector3.new(0,0,0)
  5569. end
  5570.  
  5571. end
  5572.  
  5573. local tra = Instance.new('ParticleEmitter')
  5574. tra.Parent = tor
  5575. tra.LightEmission = 1
  5576. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5577. tra.Texture = "rbxassetid://1177925800"
  5578. tra.Rate = 15
  5579. tra.Rotation = NumberRange.new(-5, 5)
  5580. tra.Lifetime = NumberRange.new(1.5, 2)
  5581. tra.Size = NumberSequence.new(0.098,0)
  5582. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5583. tra.Speed = NumberRange.new(0.5)
  5584. tra.VelocitySpread = 360
  5585. tra.VelocityInheritance = 0.5
  5586. tra.ZOffset = 2
  5587. tra.LockedToPart = true
  5588. tra.EmissionDirection = Enum.NormalId.Top
  5589. local tra = Instance.new('ParticleEmitter')
  5590. tra.Parent = arm1
  5591. tra.LightEmission = 1
  5592. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5593. tra.Texture = "rbxassetid://1177925800"
  5594. tra.Rate = 15
  5595. tra.Rotation = NumberRange.new(-5, 5)
  5596. tra.Lifetime = NumberRange.new(1.5, 2)
  5597. tra.Size = NumberSequence.new(0.098,0)
  5598. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5599. tra.Speed = NumberRange.new(0.5)
  5600. tra.VelocitySpread = 360
  5601. tra.VelocityInheritance = 0.5
  5602. tra.ZOffset = 2
  5603. tra.LockedToPart = true
  5604. tra.EmissionDirection = Enum.NormalId.Top
  5605. local tra = Instance.new('ParticleEmitter')
  5606. tra.Parent = arm2
  5607. tra.LightEmission = 1
  5608. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5609. tra.Texture = "rbxassetid://1177925800"
  5610. tra.Rate = 15
  5611. tra.Rotation = NumberRange.new(-5, 5)
  5612. tra.Lifetime = NumberRange.new(1.5, 2)
  5613. tra.Size = NumberSequence.new(0.098,0)
  5614. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5615. tra.Speed = NumberRange.new(0.5)
  5616. tra.VelocitySpread = 360
  5617. tra.VelocityInheritance = 0.5
  5618. tra.ZOffset = 2
  5619. tra.LockedToPart = true
  5620. tra.EmissionDirection = Enum.NormalId.Top
  5621. local tra = Instance.new('ParticleEmitter')
  5622. tra.Parent = leg1
  5623. tra.LightEmission = 1
  5624. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5625. tra.Texture = "rbxassetid://1177925800"
  5626. tra.Rate = 15
  5627. tra.Rotation = NumberRange.new(-5, 5)
  5628. tra.Lifetime = NumberRange.new(1.5, 2)
  5629. tra.Size = NumberSequence.new(0.098,0)
  5630. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5631. tra.Speed = NumberRange.new(0.5)
  5632. tra.VelocitySpread = 360
  5633. tra.VelocityInheritance = 0.5
  5634. tra.ZOffset = 2
  5635. tra.LockedToPart = true
  5636. tra.EmissionDirection = Enum.NormalId.Top
  5637. local tra = Instance.new('ParticleEmitter')
  5638. tra.Parent = leg2
  5639. tra.LightEmission = 1
  5640. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5641. tra.Texture = "rbxassetid://1177925800"
  5642. tra.Rate = 15
  5643. tra.Rotation = NumberRange.new(-5, 5)
  5644. tra.Lifetime = NumberRange.new(1.5, 2)
  5645. tra.Size = NumberSequence.new(0.098,0)
  5646. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5647. tra.Speed = NumberRange.new(0.5)
  5648. tra.VelocitySpread = 360
  5649. tra.VelocityInheritance = 0.5
  5650. tra.ZOffset = 2
  5651. tra.LockedToPart = true
  5652. tra.EmissionDirection = Enum.NormalId.Top
  5653. local tra = Instance.new('ParticleEmitter')
  5654. tra.Parent = hed
  5655. tra.LightEmission = 1
  5656. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5657. tra.Texture = "rbxassetid://1177925800"
  5658. tra.Rate = 15
  5659. tra.Rotation = NumberRange.new(-5, 5)
  5660. tra.Lifetime = NumberRange.new(1.5, 2)
  5661. tra.Size = NumberSequence.new(0.098,0)
  5662. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5663. tra.Speed = NumberRange.new(0.5)
  5664. tra.VelocitySpread = 360
  5665. tra.VelocityInheritance = 0.5
  5666. tra.ZOffset = 2
  5667. tra.LockedToPart = true
  5668. tra.EmissionDirection = Enum.NormalId.Top
  5669. local tra = Instance.new('ParticleEmitter')
  5670. tra.Parent = Hair7
  5671. tra.LightEmission = 1
  5672. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5673. tra.Texture = "rbxassetid://1177925800"
  5674. tra.Rate = 15
  5675. tra.Rotation = NumberRange.new(-5, 5)
  5676. tra.Lifetime = NumberRange.new(1.5, 2)
  5677. tra.Size = NumberSequence.new(0.098,0)
  5678. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5679. tra.Speed = NumberRange.new(0.5)
  5680. tra.VelocitySpread = 360
  5681. tra.VelocityInheritance = 0.5
  5682. tra.ZOffset = 2
  5683. tra.LockedToPart = true
  5684. tra.EmissionDirection = Enum.NormalId.Top
  5685.  
  5686. hed.face.Texture = "rbxassetid://1128363059"
  5687.  
  5688. Hair7:Destroy()
  5689. Hair7 = Instance.new("Part")
  5690. Hair7.Parent = char
  5691. Hair7.Name = "Hair"
  5692. Hair7.CanCollide = false
  5693. Hair7.Locked = true
  5694. Hair7.TopSurface = "Smooth"
  5695. Hair7.BottomSurface = "Smooth"
  5696. Hair7.formFactor = "Symmetric"
  5697. Hair7.Material = "Neon"
  5698. Hair7.BrickColor = BrickColor.new("Really black")
  5699. Hair7.CFrame = char.Torso.CFrame
  5700. Hair7.Size = Vector3.new(1, 1, 1)
  5701. Hair7.Transparency = 0
  5702.  
  5703.  
  5704. Weld1 = Instance.new("Weld")
  5705. Weld1.Parent = char.Head
  5706. Weld1.Part0 = char.Head
  5707. Weld1.Part1 = Hair7
  5708. Weld1.C0 = CFrame.new(0, 1.1, -0.16) * CFrame.Angles(math.rad(0),math.rad(180),math.rad(0))
  5709.  
  5710. Mesh = Instance.new("SpecialMesh")
  5711. Mesh.Offset = Vector3.new(0,-0.2,-0.14)
  5712. Mesh.Parent = Hair7
  5713. Mesh.Scale = Vector3.new(6.3,4.8,6.2)
  5714. Mesh.MeshType = "FileMesh"
  5715. Mesh.MeshId = "http://www.roblox.com/asset/?id=1125231485"
  5716. Mesh.TextureId = ""
  5717.  
  5718. local tra = Instance.new('ParticleEmitter')
  5719. tra.Parent = Hair7
  5720. tra.LightEmission = 1
  5721. tra.Color = ColorSequence.new(BrickColor.new("Persimmon").Color)
  5722. tra.Texture = "rbxassetid://1177925800"
  5723. tra.Rate = 15
  5724. tra.Rotation = NumberRange.new(-5, 5)
  5725. tra.Lifetime = NumberRange.new(1.5, 2)
  5726. tra.Size = NumberSequence.new(0.098,0)
  5727. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  5728. tra.Speed = NumberRange.new(0.5)
  5729. tra.VelocitySpread = 360
  5730. tra.VelocityInheritance = 0.5
  5731. tra.ZOffset = 2
  5732. tra.EmissionDirection = Enum.NormalId.Top
  5733. tra.LockedToPart = true
  5734.  
  5735. local larm1 = Instance.new("Part",char)
  5736. larm1.Name = "arm1"
  5737. larm1.Material = Enum.Material.Neon
  5738. larm1.Transparency = 0.87
  5739. larm1.BrickColor = BrickColor.new("Persimmon")
  5740. larm1.Size = Vector3.new(1.1,2.1,1.1)
  5741. larm1.Position = Vector3.new(999,999,999)
  5742. local larmhold = Instance.new("Weld",char)
  5743. larmhold.Part0 = arm1
  5744. larmhold.Part1 = larm1
  5745. larmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  5746. local rarm1 = Instance.new("Part",char)
  5747. rarm1.Name = "arm2"
  5748. rarm1.Material = Enum.Material.Neon
  5749. rarm1.Transparency = 0.87
  5750. rarm1.BrickColor = BrickColor.new("Persimmon")
  5751. rarm1.Size = Vector3.new(1.1,2.1,1.1)
  5752. rarm1.Position = Vector3.new(999,999,999)
  5753. local rarmhold = Instance.new("Weld",char)
  5754. rarmhold.Part0 = arm2
  5755. rarmhold.Part1 = rarm1
  5756. rarmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  5757. local torso1 = Instance.new("Part",char)
  5758. torso1.Material = Enum.Material.Neon
  5759. torso1.Transparency = 0.87
  5760. torso1.BrickColor = BrickColor.new("Persimmon")
  5761. torso1.Name = "tors"
  5762. torso1.Size = Vector3.new(2.1,2.1,1.1)
  5763. torso1.Position = Vector3.new(999,999,999)
  5764. local torsohold = Instance.new("Weld",char)
  5765. torsohold.Part0 = tor
  5766. torsohold.Part1 = torso1
  5767. torsohold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  5768. local lleg1 = Instance.new("Part",char)
  5769. lleg1.Name = "leg1"
  5770. lleg1.Material = Enum.Material.Neon
  5771. lleg1.Transparency = 0.87
  5772. lleg1.BrickColor = BrickColor.new("Persimmon")
  5773. lleg1.Size = Vector3.new(1.1,2.1,1.1)
  5774. lleg1.Position = Vector3.new(999,999,999)
  5775. local lleghold = Instance.new("Weld",char)
  5776. lleghold.Part0 = leg1
  5777. lleghold.Part1 = lleg1
  5778. lleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  5779. local rleg1 = Instance.new("Part",char)
  5780. rleg1.Name = "leg2"
  5781. rleg1.Material = Enum.Material.Neon
  5782. rleg1.Transparency = 0.87
  5783. rleg1.BrickColor = BrickColor.new("Persimmon")
  5784. rleg1.Size = Vector3.new(1.1,2.1,1.1)
  5785. rleg1.Position = Vector3.new(999,999,999)
  5786. local rleghold = Instance.new("Weld",char)
  5787. rleghold.Part0 = leg2
  5788. rleghold.Part1 = rleg1
  5789. rleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  5790. local rhed1 = Instance.new("Part",char)
  5791. rhed1.Name = "hed"
  5792. rhed1.Material = Enum.Material.Neon
  5793. rhed1.Transparency = 0.75
  5794. rhed1.BrickColor = BrickColor.new("Persimmon")
  5795. rhed1.Size = Vector3.new(2.3,1.3,1.3)
  5796. rhed1.Position = Vector3.new(999,999,999)
  5797. local rhedhold = Instance.new("Weld",char)
  5798. rhedhold.Part0 = hed
  5799. rhedhold.Part1 = rhed1
  5800. rhedhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  5801. local rhedmesh1 = Instance.new("SpecialMesh",rhed1)
  5802. rhedmesh1.MeshId = "rbxassetid://539723444"
  5803. rhedmesh1.TextureId = "rbxassetid://43200547"
  5804. rhedmesh1.Scale = Vector3.new(1,1,1)
  5805.  
  5806. hed.face.Texture = "rbxassetid://1177817789"
  5807.  
  5808. local list = {NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(0.371,0.525,0),NumberSequenceKeypoint.new(0.775,0.579,0),NumberSequenceKeypoint.new(1,0.985,0)}
  5809.  
  5810. local color1 = Color3.fromRGB(255,19,70)
  5811. local color2 = Color3.fromRGB(255,175,80)
  5812. local color3 = Color3.fromRGB(230,19,61)
  5813.  
  5814. local list4 = {ColorSequenceKeypoint.new(0,color1),ColorSequenceKeypoint.new(0.959,color2),ColorSequenceKeypoint.new(1,color3)}
  5815.  
  5816. local list5 = {NumberSequenceKeypoint.new(0,0.425,0),NumberSequenceKeypoint.new(0.29,0.899,0),NumberSequenceKeypoint.new(0.59,0.955,0),NumberSequenceKeypoint.new(1,0.579,0)}
  5817.  
  5818. local list6 = {NumberSequenceKeypoint.new(0,0.429,0),NumberSequenceKeypoint.new(0.29,0.9,0),NumberSequenceKeypoint.new(0.59,0.959,0),NumberSequenceKeypoint.new(1,0.589,0)}
  5819.  
  5820. local Part2 = Instance.new("Part")
  5821. Part2.Parent = char
  5822. Part2.Name = "Part9"
  5823. Part2.CanCollide = false
  5824. Part2.Locked = true
  5825. Part2.TopSurface = "Smooth"
  5826. Part2.BottomSurface = "Smooth"
  5827. Part2.formFactor = "Symmetric"
  5828. Part2.Material = "Neon"
  5829. Part2.BrickColor = BrickColor.new("Really black")
  5830. Part2.CFrame = p.Character.Torso.CFrame
  5831. Part2.Size = Vector3.new(2,2,2)
  5832. Part2.Transparency = 1
  5833.  
  5834. local Mesh3 = Instance.new("SpecialMesh")
  5835. Mesh3.Offset = Vector3.new(0.2, -0.2, 0.2)
  5836. Mesh3.Parent = Part2
  5837. Mesh3.Scale = Vector3.new(1, 1, 1)
  5838. Mesh3.MeshType = "FileMesh"
  5839. Mesh3.MeshId = "http://www.roblox.com/asset/?id=476757756"
  5840. Mesh3.TextureId = ""
  5841.  
  5842.  
  5843. local Weld5 = Instance.new("Weld")
  5844. Weld5.Parent = p.Character.Head
  5845. Weld5.Part0 = p.Character.Head
  5846. Weld5.Part1 = Part2
  5847.  
  5848. Part2.Color = Color3.fromRGB(5,5,5)
  5849. Hair7.Color = Color3.fromRGB(5,5,5)
  5850. Mesh3.MeshId = "rbxassetid://430344159"
  5851. Mesh3.Scale = Vector3.new(3.8,3.8,3.8)
  5852. Weld5.C0 = CFrame.new(-.25,1.2,.34)
  5853.  
  5854. local Part = Instance.new("Part")
  5855. Part.Parent = char
  5856. Part.Name = "Part8"
  5857. Part.CanCollide = false
  5858. Part.Locked = true
  5859. Part.TopSurface = "Smooth"
  5860. Part.BottomSurface = "Smooth"
  5861. Part.formFactor = "Symmetric"
  5862. Part.Material = "Neon"
  5863. Part.BrickColor = BrickColor.new("Really black")
  5864. Part.CFrame = p.Character.Torso.CFrame
  5865. Part.Size = Vector3.new(1.75,1.75,1.75)
  5866. Part.Transparency = 1
  5867.  
  5868. local Weld = Instance.new("Weld")
  5869. Weld.Parent = p.Character.Head
  5870. Weld.Part0 = p.Character.Head
  5871. Weld.Part1 = Part
  5872. Weld.C0 = CFrame.new(0, 1, 0)
  5873.  
  5874. local ssjgaurax = Instance.new("ParticleEmitter",Part)
  5875. ssjgaurax.Name = "aura"
  5876. ssjgaurax.Texture = "rbxassetid://1095778764"
  5877. ssjgaurax.Color = ColorSequence.new(list4)
  5878. ssjgaurax.Transparency = NumberSequence.new(list)
  5879. ssjgaurax.LightEmission = 1
  5880. ssjgaurax.Speed = NumberRange.new(0)
  5881. ssjgaurax.SpreadAngle = Vector2.new(0,0)
  5882. ssjgaurax.RotSpeed = NumberRange.new(0)
  5883. ssjgaurax.Rotation = NumberRange.new(0)
  5884. ssjgaurax.LightInfluence = 0
  5885. ssjgaurax.Size = NumberSequence.new(list6)
  5886. ssjgaurax.Lifetime = NumberRange.new(2)
  5887. ssjgaurax.Rate = 9
  5888. ssjgaurax.ZOffset = 0
  5889. ssjgaurax.Acceleration = Vector3.new(0,0.05,0)
  5890. ssjgaurax.LockedToPart = true
  5891. ssjgaurax.Enabled = true
  5892.  
  5893. local ssjgaurak = Instance.new("ParticleEmitter",Part2)
  5894. ssjgaurak.Name = "aura"
  5895. ssjgaurak.Texture = "rbxassetid://1095778764"
  5896. ssjgaurak.Color = ColorSequence.new(list4)
  5897. ssjgaurak.Transparency = NumberSequence.new(list)
  5898. ssjgaurak.LightEmission = 1
  5899. ssjgaurak.Speed = NumberRange.new(0)
  5900. ssjgaurak.SpreadAngle = Vector2.new(0,0)
  5901. ssjgaurak.RotSpeed = NumberRange.new(0)
  5902. ssjgaurak.Rotation = NumberRange.new(0)
  5903. ssjgaurak.LightInfluence = 0
  5904. ssjgaurak.Size = NumberSequence.new(list6)
  5905. ssjgaurak.Lifetime = NumberRange.new(2)
  5906. ssjgaurak.Rate = 9
  5907. ssjgaurak.ZOffset = 0
  5908. ssjgaurak.Acceleration = Vector3.new(0,0.05,0)
  5909. ssjgaurak.LockedToPart = true
  5910. ssjgaurak.Enabled = true
  5911.  
  5912. local ssjgaura = Instance.new("ParticleEmitter",hed)
  5913. ssjgaura.Name = "aura"
  5914. ssjgaura.Texture = "rbxassetid://1095778764"
  5915. ssjgaura.Color = ColorSequence.new(list4)
  5916. ssjgaura.Transparency = NumberSequence.new(list)
  5917. ssjgaura.LightEmission = 1
  5918. ssjgaura.Speed = NumberRange.new(0)
  5919. ssjgaura.SpreadAngle = Vector2.new(0,0)
  5920. ssjgaura.RotSpeed = NumberRange.new(0)
  5921. ssjgaura.Rotation = NumberRange.new(0)
  5922. ssjgaura.LightInfluence = 0
  5923. ssjgaura.Size = NumberSequence.new(list6)
  5924. ssjgaura.Lifetime = NumberRange.new(3)
  5925. ssjgaura.Rate = 20
  5926. ssjgaura.ZOffset = 0
  5927. ssjgaura.Acceleration = Vector3.new(0,0.05,0)
  5928. ssjgaura.LockedToPart = true
  5929. ssjgaura.Enabled = true
  5930.  
  5931. local ssjgaura3 = Instance.new("ParticleEmitter",arm1)
  5932. ssjgaura3.Name = "aura"
  5933. ssjgaura3.Texture = "rbxassetid://1095778764"
  5934. ssjgaura3.Color = ColorSequence.new(list4)
  5935. ssjgaura3.Transparency = NumberSequence.new(list)
  5936. ssjgaura3.LightEmission = 1
  5937. ssjgaura3.LightInfluence = 0
  5938. ssjgaura3.Speed = NumberRange.new(0)
  5939. ssjgaura3.SpreadAngle = Vector2.new(0,0)
  5940. ssjgaura3.RotSpeed = NumberRange.new(0)
  5941. ssjgaura3.Rotation = NumberRange.new(0)
  5942. ssjgaura3.Size = NumberSequence.new(list5)
  5943. ssjgaura3.Lifetime = NumberRange.new(5)
  5944. ssjgaura3.Rate = 15
  5945. ssjgaura3.ZOffset = 0
  5946. ssjgaura3.Acceleration = Vector3.new(0,0.09,0)
  5947. ssjgaura3.LockedToPart = true
  5948.  
  5949. local ssjgaura4 = Instance.new("ParticleEmitter",arm2)
  5950. ssjgaura4.Name = "aura"
  5951. ssjgaura4.Texture = "rbxassetid://1095778764"
  5952. ssjgaura4.Color = ColorSequence.new(list4)
  5953. ssjgaura4.Transparency = NumberSequence.new(list)
  5954. ssjgaura4.LightEmission = 1
  5955. ssjgaura4.LightInfluence = 0
  5956. ssjgaura4.Speed = NumberRange.new(0)
  5957. ssjgaura4.SpreadAngle = Vector2.new(0,0)
  5958. ssjgaura4.RotSpeed = NumberRange.new(0)
  5959. ssjgaura4.Rotation = NumberRange.new(0)
  5960. ssjgaura4.Size = NumberSequence.new(list5)
  5961. ssjgaura4.Lifetime = NumberRange.new(5)
  5962. ssjgaura4.Rate = 15
  5963. ssjgaura4.ZOffset = 0
  5964. ssjgaura4.Acceleration = Vector3.new(0,0.09,0)
  5965. ssjgaura4.LockedToPart = true
  5966.  
  5967. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  5968. ssjgaurag.Name = "aura2"
  5969. ssjgaurag.Texture = "rbxassetid://1095778764"
  5970. ssjgaurag.Color = ColorSequence.new(list4)
  5971. ssjgaurag.Transparency = NumberSequence.new(list)
  5972. ssjgaurag.LightEmission = 1
  5973. ssjgaurag.LightInfluence = 1
  5974. ssjgaurag.Speed = NumberRange.new(0)
  5975. ssjgaurag.SpreadAngle = Vector2.new(0,0)
  5976. ssjgaurag.RotSpeed = NumberRange.new(0)
  5977. ssjgaurag.Rotation = NumberRange.new(0)
  5978. ssjgaurag.Size = NumberSequence.new(list5)
  5979. ssjgaurag.Lifetime = NumberRange.new(5)
  5980. ssjgaurag.Rate = 15
  5981. ssjgaurag.ZOffset = 0
  5982. ssjgaurag.Acceleration = Vector3.new(0,0.09,0)
  5983. ssjgaurag.LockedToPart = true
  5984.  
  5985. local ssjgaura1 = Instance.new("ParticleEmitter",leg1)
  5986. ssjgaura1.Name = "aura"
  5987. ssjgaura1.Texture = "rbxassetid://1095778764"
  5988. ssjgaura1.Color = ColorSequence.new(list4)
  5989. ssjgaura1.Transparency = NumberSequence.new(list)
  5990. ssjgaura1.LightEmission = 1
  5991. ssjgaura1.LightInfluence = 0
  5992. ssjgaura1.Speed = NumberRange.new(0)
  5993. ssjgaura1.SpreadAngle = Vector2.new(0,0)
  5994. ssjgaura1.RotSpeed = NumberRange.new(0)
  5995. ssjgaura1.Rotation = NumberRange.new(0)
  5996. ssjgaura1.Size = NumberSequence.new(list5)
  5997. ssjgaura1.Lifetime = NumberRange.new(5)
  5998. ssjgaura1.Rate = 15
  5999. ssjgaura1.ZOffset = 0
  6000. ssjgaura1.Acceleration = Vector3.new(0,0.09,0)
  6001. ssjgaura1.LockedToPart = true
  6002.  
  6003. local ssjgaura2 = Instance.new("ParticleEmitter",leg2)
  6004. ssjgaura2.Name = "aura"
  6005. ssjgaura2.Texture = "rbxassetid://1095778764"
  6006. ssjgaura2.Color = ColorSequence.new(list4)
  6007. ssjgaura2.Transparency = NumberSequence.new(list)
  6008. ssjgaura2.LightEmission = 1
  6009. ssjgaura2.LightInfluence = 0
  6010. ssjgaura2.Speed = NumberRange.new(0)
  6011. ssjgaura2.SpreadAngle = Vector2.new(0,0)
  6012. ssjgaura2.RotSpeed = NumberRange.new(0)
  6013. ssjgaura2.Rotation = NumberRange.new(0)
  6014. ssjgaura2.Size = NumberSequence.new(list5)
  6015. ssjgaura2.Lifetime = NumberRange.new(5)
  6016. ssjgaura2.Rate = 15
  6017. ssjgaura2.ZOffset = 0
  6018. ssjgaura2.Acceleration = Vector3.new(0,0.09,0)
  6019. ssjgaura2.LockedToPart = true
  6020.  
  6021. local part = Instance.new("Part",char)
  6022. part.Transparency = 1
  6023. part.Size = Vector3.new(1,1,1)
  6024. local pw = Instance.new("Weld",part)
  6025. pw.Part0 = tor
  6026. pw.Part1 = part
  6027. pw.C1 = CFrame.new(0,2.3,0)
  6028.  
  6029. local fla11 = Instance.new("ParticleEmitter",part)
  6030. fla11.Name = "Flame"
  6031. fla11.Color = ColorSequence.new(Color3.fromRGB(255,19,70),Color3.fromRGB(255,200,9))
  6032. fla11.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6033. fla11.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,10,0),NumberSequenceKeypoint.new(1,15,0)})
  6034. fla11.LightEmission = 2.5
  6035. fla11.Rate = 2500
  6036. fla11.Lifetime = NumberRange.new(50)
  6037. fla11.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,0,0)})
  6038. fla11.Speed = NumberRange.new(125)
  6039. fla11.SpreadAngle = Vector2.new(89,89)
  6040.  
  6041. local fla12 = Instance.new("ParticleEmitter",part)
  6042. fla12.Name = "Flame"
  6043. fla12.Color = ColorSequence.new(Color3.fromRGB(255,200,9),Color3.fromRGB(255,17,79))
  6044. fla12.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6045. fla12.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,5,0),NumberSequenceKeypoint.new(1,10,0)})
  6046. fla12.LightEmission = 5
  6047. fla12.Rate = 550
  6048. fla12.Lifetime = NumberRange.new(50)
  6049. fla12.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,0,0)})
  6050. fla12.Speed = NumberRange.new(150)
  6051. fla12.SpreadAngle = Vector2.new(80,80)
  6052.  
  6053. local num = 0
  6054. local a21e = Instance.new("Part",char)
  6055. a21e.Name = "Beam"..num
  6056. a21e.Locked = true
  6057. a21e.Size = Vector3.new(2,2,2)
  6058. a21e.CanCollide = false
  6059. a21e.Position = hrp.Position
  6060. a21e.Color = Color3.fromRGB(255,219,70)
  6061. a21e.Material = "Neon"
  6062. a21e.Transparency = 0
  6063. local aa21e = Instance.new("SpecialMesh",a21e)
  6064. a21e.Anchored = true
  6065. a21e.Position = hrp.Position
  6066. aa21e.MeshType = "Sphere"
  6067. aa21e.Scale = Vector3.new(2,2,2)
  6068.  
  6069. GroundShake2 = false
  6070.  
  6071. --local cc = Instance.new("ColorCorrectionEffect",game.Lighting)
  6072. --cc.Name = "effect"
  6073. --cc.TintColor = Color3.fromRGB(255,219,70)
  6074.  
  6075. local Mus2 = Instance.new("Sound",char)
  6076. Mus2.SoundId = "rbxassetid://301184111"
  6077. Mus2.Volume = 4
  6078. Mus2.Looped = false
  6079. Mus2:Play()
  6080. Mus1:Play()
  6081.  
  6082. Mus.SoundId = "rbxassetid://386427360"
  6083.  
  6084. Mus:Play()
  6085.  
  6086. for i = 1,35.4 do
  6087. for _,player in pairs(game.Players:GetPlayers()) do
  6088. hum.CameraOffset = Vector3.new(math.random(-0.8,0.8),math.random(-0.9,0.9),math.random(-0.8,0.8))
  6089. wait()
  6090. hum.CameraOffset = Vector3.new(0,0,0)
  6091. --cc.Brightness = cc.Brightness + 0.1
  6092. aa21e.Scale = aa21e.Scale + Vector3.new(1.99,1.99,1.99)
  6093. a21e.Transparency = a21e.Transparency + 0.01
  6094.  
  6095. end
  6096. end
  6097.  
  6098. --GroundShake = false
  6099.  
  6100. wait()
  6101.  
  6102. hum.WalkSpeed = 399.999999999999999999999999999999999999999999
  6103. hum.JumpPower = 150.250000000000000000000000000000000000000000
  6104.  
  6105. Hair7.Color = Color3.fromRGB(255,59,82)
  6106.  
  6107. ape51.Color = Color3.fromRGB(255,58,91)
  6108.  
  6109. hed.face.Texture = "rbxassetid://231488705"
  6110.  
  6111. local list = {NumberSequenceKeypoint.new(0,0.975,0),NumberSequenceKeypoint.new(1,1,0)}
  6112.  
  6113. local list2 = {NumberSequenceKeypoint.new(0,0.99,0),NumberSequenceKeypoint.new(1,1,0)}
  6114.  
  6115. local ssjgaura = Instance.new("ParticleEmitter",tor)
  6116. ssjgaura.Name = "SSJGaura"
  6117. ssjgaura.Color = ColorSequence.new(Color3.fromRGB(255,25,70))
  6118. ssjgaura.LightEmission = 1
  6119. ssjgaura.Transparency = NumberSequence.new(list2)
  6120. ssjgaura.Size = NumberSequence.new(5)
  6121. ssjgaura.Lifetime = NumberRange.new(0.9)
  6122. ssjgaura.Rate = 89
  6123. ssjgaura.ZOffset = -1
  6124. ssjgaura.Speed = NumberRange.new(5)
  6125. ssjgaura.LockedToPart = true
  6126.  
  6127. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  6128. ssjgaurag.Name = "SSGaura"
  6129. ssjgaurag.Color = ColorSequence.new(Color3.fromRGB(255,175,80))
  6130. ssjgaurag.LightEmission = 0.75
  6131. ssjgaurag.Transparency = NumberSequence.new(list)
  6132. ssjgaurag.Size = NumberSequence.new(5)
  6133. ssjgaurag.Lifetime = NumberRange.new(0.99)
  6134. ssjgaurag.Rate = 89
  6135. ssjgaurag.ZOffset = 0
  6136. ssjgaurag.Speed = NumberRange.new(5.999)
  6137. ssjgaurag.SpreadAngle = Vector2.new(0.9,0.99)
  6138. ssjgaurag.LockedToPart = true
  6139.  
  6140. ssjgaura.Texture = "rbxassetid://256159034"
  6141. ssjgaurag.Texture = "rbxassetid://256159034"
  6142.  
  6143. --available = true
  6144.  
  6145. wait(.9)
  6146.  
  6147. a21e:Remove()
  6148.  
  6149. part:Remove()
  6150.  
  6151. --cc:Remove()
  6152.  
  6153. being = false
  6154.  
  6155. ssjg = false
  6156.  
  6157. normal = false
  6158.  
  6159. limitbreaker = true
  6160. automoviment = true
  6161. dodge = true
  6162.  
  6163. ultrainstinct = false
  6164.  
  6165. end
  6166. end
  6167. end;end
  6168.  
  6169. function ssb()
  6170.  
  6171. if auracan4 == true then
  6172. auracan4 = false
  6173. end
  6174.  
  6175. if ssj1 == false and ssjb == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false or ssjg == true or ssj4 == true then
  6176. if being == false then
  6177. ssjg = false
  6178. being = true
  6179.  
  6180. for _,v in pairs(tor:GetChildren()) do
  6181. if v.ClassName == "ParticleEmitter" then
  6182. v:Remove()
  6183. end
  6184. end
  6185.  
  6186. chatfunc("Super Saiyan Blue.")
  6187.  
  6188. Mus.Pitch = 1
  6189.  
  6190. Mus.SoundId = "rbxassetid://396456430"
  6191. Mus:Play()
  6192. Mus.Volume = 10
  6193.  
  6194. Mus1:Play()
  6195.  
  6196. Hair7.Color = Color3.fromRGB(0,225,245)
  6197. ape51.Color = Color3.fromRGB(0,225,245)
  6198. Mesh.MeshId = "rbxassetid://430344159"
  6199. Mesh.Scale = Vector3.new(6.3,6.3,6.3)
  6200. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  6201.  
  6202. hed.face.Texture = "rbxassetid://670772635"
  6203.  
  6204. local list = {NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(1,0.8,0)}
  6205. local list2 = {NumberSequenceKeypoint.new(0,0.6,0),NumberSequenceKeypoint.new(1,0.9,0)}
  6206.  
  6207. local ssjgaura = Instance.new("ParticleEmitter",tor)
  6208. ssjgaura.Name = "SSJBaura"
  6209. ssjgaura.Color = ColorSequence.new(Color3.fromRGB(125,150,255))
  6210. ssjgaura.Transparency = NumberSequence.new(list)
  6211. ssjgaura.LightEmission = 1
  6212. ssjgaura.Size = NumberSequence.new(9)
  6213. ssjgaura.Lifetime = NumberRange.new(0.9)
  6214. ssjgaura.Rate = 19
  6215. ssjgaura.ZOffset = -1.9
  6216. ssjgaura.Speed = NumberRange.new(5)
  6217. ssjgaura.LockedToPart = true
  6218.  
  6219. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  6220. ssjgaurag.Name = "SSBaura2"
  6221. ssjgaurag.Color = ColorSequence.new(Color3.fromRGB(200,200,200))
  6222. ssjgaurag.Transparency = NumberSequence.new(list2)
  6223. ssjgaurag.LightEmission = 0.75
  6224. ssjgaurag.Size = NumberSequence.new(9)
  6225. ssjgaurag.Lifetime = NumberRange.new(0.99)
  6226. ssjgaurag.Rate = 19
  6227. ssjgaurag.ZOffset = -2.9
  6228. ssjgaurag.Speed = NumberRange.new(5.999)
  6229. ssjgaurag.SpreadAngle = Vector2.new(0.9,0.99)
  6230. ssjgaurag.LockedToPart = true
  6231.  
  6232. ssjgaura.Texture = "rbxassetid://894173257"
  6233. ssjgaurag.Texture = "rbxassetid://1072541924"
  6234.  
  6235. local num = 0
  6236. local a21e = Instance.new("Part",char)
  6237. a21e.Name = "Beam"..num
  6238. a21e.Locked = true
  6239. a21e.Size = Vector3.new(1,1,1)
  6240. a21e.CanCollide = false
  6241. a21e.Position = Vector3.new(999,999,999)
  6242. a21e.BrickColor = BrickColor.new("Bright bluish green")
  6243. a21e.Material = "Neon"
  6244. a21e.Transparency = 0
  6245. local aa21e = Instance.new("SpecialMesh",a21e)
  6246. a21e.Anchored = true
  6247. a21e.Position = hrp.Position
  6248. aa21e.MeshType = "Sphere"
  6249. aa21e.Scale = Vector3.new(1,1,1)
  6250.  
  6251. for i = 1,25 do
  6252. wait()
  6253. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  6254. a21e.Transparency = a21e.Transparency + 0.04
  6255. end
  6256.  
  6257. wait(.1)
  6258.  
  6259. a21e:Remove()
  6260.  
  6261. wait()
  6262.  
  6263. hum.WalkSpeed = 100.999
  6264. hum.JumpPower = 100.999
  6265. hum.MaxHealth = math.huge
  6266. hum.Health = 1440000000000
  6267.  
  6268. being = false
  6269.  
  6270. normal = false
  6271.  
  6272. ssjb = true
  6273.  
  6274. --available = true
  6275.  
  6276. end
  6277. end
  6278. end
  6279.  
  6280. function superior()
  6281.  
  6282. if hum.Health <= 10001 then
  6283.  
  6284. if normal == true then
  6285. if ssjg == false and ssj1 == false and ssjb == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false and fullpowerssj == false then
  6286. if being == false then
  6287. being = true
  6288.  
  6289. GroundWave1()
  6290.  
  6291. wait(1)
  6292.  
  6293. rock = true
  6294.  
  6295. wait(1.12)
  6296.  
  6297. chatfunc("Not yet...")
  6298.  
  6299. Mus.Pitch = 1
  6300.  
  6301. wait(2.24)
  6302.  
  6303. rock = false
  6304. rock3 = true
  6305. rock3 = true
  6306.  
  6307. GroundWave0()
  6308.  
  6309. local tra = Instance.new('ParticleEmitter')
  6310. tra.Parent = tor
  6311. tra.LightEmission = 1
  6312. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6313. tra.Texture = "rbxassetid://1177925800"
  6314. tra.Rate = 15
  6315. tra.Rotation = NumberRange.new(-5, 5)
  6316. tra.Lifetime = NumberRange.new(1.5, 2)
  6317. tra.Size = NumberSequence.new(0.098,0)
  6318. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6319. tra.Speed = NumberRange.new(0.5)
  6320. tra.VelocitySpread = 360
  6321. tra.VelocityInheritance = 0.5
  6322. tra.ZOffset = 2
  6323. tra.LockedToPart = true
  6324. tra.EmissionDirection = Enum.NormalId.Top
  6325. local tra = Instance.new('ParticleEmitter')
  6326. tra.Parent = arm1
  6327. tra.LightEmission = 1
  6328. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6329. tra.Texture = "rbxassetid://1177925800"
  6330. tra.Rate = 15
  6331. tra.Rotation = NumberRange.new(-5, 5)
  6332. tra.Lifetime = NumberRange.new(1.5, 2)
  6333. tra.Size = NumberSequence.new(0.098,0)
  6334. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6335. tra.Speed = NumberRange.new(0.5)
  6336. tra.VelocitySpread = 360
  6337. tra.VelocityInheritance = 0.5
  6338. tra.ZOffset = 2
  6339. tra.LockedToPart = true
  6340. tra.EmissionDirection = Enum.NormalId.Top
  6341. local tra = Instance.new('ParticleEmitter')
  6342. tra.Parent = arm2
  6343. tra.LightEmission = 1
  6344. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6345. tra.Texture = "rbxassetid://1177925800"
  6346. tra.Rate = 15
  6347. tra.Rotation = NumberRange.new(-5, 5)
  6348. tra.Lifetime = NumberRange.new(1.5, 2)
  6349. tra.Size = NumberSequence.new(0.098,0)
  6350. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6351. tra.Speed = NumberRange.new(0.5)
  6352. tra.VelocitySpread = 360
  6353. tra.VelocityInheritance = 0.5
  6354. tra.ZOffset = 2
  6355. tra.LockedToPart = true
  6356. tra.EmissionDirection = Enum.NormalId.Top
  6357. local tra = Instance.new('ParticleEmitter')
  6358. tra.Parent = leg1
  6359. tra.LightEmission = 1
  6360. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6361. tra.Texture = "rbxassetid://1177925800"
  6362. tra.Rate = 15
  6363. tra.Rotation = NumberRange.new(-5, 5)
  6364. tra.Lifetime = NumberRange.new(1.5, 2)
  6365. tra.Size = NumberSequence.new(0.098,0)
  6366. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6367. tra.Speed = NumberRange.new(0.5)
  6368. tra.VelocitySpread = 360
  6369. tra.VelocityInheritance = 0.5
  6370. tra.ZOffset = 2
  6371. tra.LockedToPart = true
  6372. tra.EmissionDirection = Enum.NormalId.Top
  6373. local tra = Instance.new('ParticleEmitter')
  6374. tra.Parent = leg2
  6375. tra.LightEmission = 1
  6376. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6377. tra.Texture = "rbxassetid://1177925800"
  6378. tra.Rate = 15
  6379. tra.Rotation = NumberRange.new(-5, 5)
  6380. tra.Lifetime = NumberRange.new(1.5, 2)
  6381. tra.Size = NumberSequence.new(0.098,0)
  6382. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6383. tra.Speed = NumberRange.new(0.5)
  6384. tra.VelocitySpread = 360
  6385. tra.VelocityInheritance = 0.5
  6386. tra.ZOffset = 2
  6387. tra.LockedToPart = true
  6388. tra.EmissionDirection = Enum.NormalId.Top
  6389. local tra = Instance.new('ParticleEmitter')
  6390. tra.Parent = hed
  6391. tra.LightEmission = 1
  6392. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6393. tra.Texture = "rbxassetid://1177925800"
  6394. tra.Rate = 15
  6395. tra.Rotation = NumberRange.new(-5, 5)
  6396. tra.Lifetime = NumberRange.new(1.5, 2)
  6397. tra.Size = NumberSequence.new(0.098,0)
  6398. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6399. tra.Speed = NumberRange.new(0.5)
  6400. tra.VelocitySpread = 360
  6401. tra.VelocityInheritance = 0.5
  6402. tra.ZOffset = 2
  6403. tra.LockedToPart = true
  6404. tra.EmissionDirection = Enum.NormalId.Top
  6405. local tra = Instance.new('ParticleEmitter')
  6406. tra.Parent = Hair7
  6407. tra.LightEmission = 1
  6408. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6409. tra.Texture = "rbxassetid://1177925800"
  6410. tra.Rate = 15
  6411. tra.Rotation = NumberRange.new(-5, 5)
  6412. tra.Lifetime = NumberRange.new(1.5, 2)
  6413. tra.Size = NumberSequence.new(0.098,0)
  6414. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6415. tra.Speed = NumberRange.new(0.5)
  6416. tra.VelocitySpread = 360
  6417. tra.VelocityInheritance = 0.5
  6418. tra.ZOffset = 2
  6419. tra.LockedToPart = true
  6420. tra.EmissionDirection = Enum.NormalId.Top
  6421.  
  6422. hed.face.Texture = "rbxassetid://1128363059"
  6423.  
  6424. wait(1)
  6425.  
  6426. chatfunc("Aghh..")
  6427.  
  6428. wait(0.1)
  6429.  
  6430. GroundWave1()
  6431.  
  6432. --wait(0.9)
  6433.  
  6434. --GroundShake = true
  6435. --GroundShake2 = true
  6436.  
  6437. --wait(1)
  6438.  
  6439. --GroundShake2 = false
  6440. --GroundShake = false
  6441.  
  6442. hum.WalkSpeed = 0
  6443. hum.JumpPower = 0
  6444.  
  6445. wait(2.05)
  6446.  
  6447. --GroundShake2 = true
  6448. --GroundShake = true
  6449.  
  6450. for i = 1,6 do
  6451. for _,player in pairs(game.Players:GetPlayers()) do
  6452. hum.CameraOffset = Vector3.new(math.random(-0.8,0.8),math.random(-0.9,0.9),math.random(-0.8,0.8))
  6453.  
  6454. wait()
  6455.  
  6456. --GroundShake2 = true
  6457. --GroundShake = true
  6458.  
  6459. hum.CameraOffset = Vector3.new(0,0,0)
  6460. end
  6461.  
  6462. end
  6463.  
  6464. Hair7:Destroy()
  6465. Hair7 = Instance.new("Part")
  6466. Hair7.Parent = char
  6467. Hair7.Name = "Hair"
  6468. Hair7.CanCollide = false
  6469. Hair7.Locked = true
  6470. Hair7.TopSurface = "Smooth"
  6471. Hair7.BottomSurface = "Smooth"
  6472. Hair7.formFactor = "Symmetric"
  6473. Hair7.Material = "Neon"
  6474. Hair7.BrickColor = BrickColor.new("Really black")
  6475. Hair7.CFrame = char.Torso.CFrame
  6476. Hair7.Size = Vector3.new(1, 1, 1)
  6477. Hair7.Transparency = 0
  6478.  
  6479.  
  6480. Weld1 = Instance.new("Weld")
  6481. Weld1.Parent = char.Head
  6482. Weld1.Part0 = char.Head
  6483. Weld1.Part1 = Hair7
  6484. Weld1.C0 = CFrame.new(0, 1.1, -0.16) * CFrame.Angles(math.rad(0),math.rad(180),math.rad(0))
  6485.  
  6486. Mesh = Instance.new("SpecialMesh")
  6487. Mesh.Offset = Vector3.new(0,-0.2,-0.14)
  6488. Mesh.Parent = Hair7
  6489. Mesh.Scale = Vector3.new(6.3,4.8,6.2)
  6490. Mesh.MeshType = "FileMesh"
  6491. Mesh.MeshId = "http://www.roblox.com/asset/?id=1125231485"
  6492. Mesh.TextureId = ""
  6493.  
  6494. local tra = Instance.new('ParticleEmitter')
  6495. tra.Parent = Hair7
  6496. tra.LightEmission = 1
  6497. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6498. tra.Texture = "rbxassetid://1177925800"
  6499. tra.Rate = 15
  6500. tra.Rotation = NumberRange.new(-5, 5)
  6501. tra.Lifetime = NumberRange.new(1.5, 2)
  6502. tra.Size = NumberSequence.new(0.098,0)
  6503. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6504. tra.Speed = NumberRange.new(0.5)
  6505. tra.VelocitySpread = 360
  6506. tra.VelocityInheritance = 0.5
  6507. tra.ZOffset = 2
  6508. tra.EmissionDirection = Enum.NormalId.Top
  6509. tra.LockedToPart = true
  6510.  
  6511. hed.face.Texture = "rbxassetid://1108348423"
  6512.  
  6513. local list = {NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(0.371,0.525,0),NumberSequenceKeypoint.new(0.775,0.579,0),NumberSequenceKeypoint.new(1,0.985,0)}
  6514.  
  6515. local color1 = Color3.fromRGB(0,115,255)
  6516. local color2 = Color3.fromRGB(209,155,255)
  6517. local color3 = Color3.fromRGB(230,75,75)
  6518.  
  6519. local list4 = {ColorSequenceKeypoint.new(0,color1),ColorSequenceKeypoint.new(0.959,color2),ColorSequenceKeypoint.new(1,color3)}
  6520.  
  6521. local list5 = {NumberSequenceKeypoint.new(0,0.425,0),NumberSequenceKeypoint.new(0.29,0.899,0),NumberSequenceKeypoint.new(0.59,0.955,0),NumberSequenceKeypoint.new(1,0.579,0)}
  6522.  
  6523. local list6 = {NumberSequenceKeypoint.new(0,0.429,0),NumberSequenceKeypoint.new(0.29,0.9,0),NumberSequenceKeypoint.new(0.59,0.959,0),NumberSequenceKeypoint.new(1,0.589,0)}
  6524.  
  6525. local Part2 = Instance.new("Part")
  6526. Part2.Parent = char
  6527. Part2.Name = "Part9"
  6528. Part2.CanCollide = false
  6529. Part2.Locked = true
  6530. Part2.TopSurface = "Smooth"
  6531. Part2.BottomSurface = "Smooth"
  6532. Part2.formFactor = "Symmetric"
  6533. Part2.Material = "Neon"
  6534. Part2.BrickColor = BrickColor.new("Really black")
  6535. Part2.CFrame = p.Character.Torso.CFrame
  6536. Part2.Size = Vector3.new(2,2,2)
  6537. Part2.Transparency = 1
  6538.  
  6539. local Mesh3 = Instance.new("SpecialMesh")
  6540. Mesh3.Offset = Vector3.new(0.2, -0.2, 0.2)
  6541. Mesh3.Parent = Part2
  6542. Mesh3.Scale = Vector3.new(1, 1, 1)
  6543. Mesh3.MeshType = "FileMesh"
  6544. Mesh3.MeshId = "http://www.roblox.com/asset/?id=476757756"
  6545. Mesh3.TextureId = ""
  6546.  
  6547.  
  6548. local Weld5 = Instance.new("Weld")
  6549. Weld5.Parent = p.Character.Head
  6550. Weld5.Part0 = p.Character.Head
  6551. Weld5.Part1 = Part2
  6552.  
  6553. Part2.Color = Color3.fromRGB(5,5,5)
  6554. Hair7.Color = Color3.fromRGB(5,5,5)
  6555. Mesh3.MeshId = "rbxassetid://430344159"
  6556. Mesh3.Scale = Vector3.new(3.8,3.8,3.8)
  6557. Weld5.C0 = CFrame.new(-.25,1.2,.34)
  6558.  
  6559. local Part = Instance.new("Part")
  6560. Part.Parent = char
  6561. Part.Name = "Part8"
  6562. Part.CanCollide = false
  6563. Part.Locked = true
  6564. Part.TopSurface = "Smooth"
  6565. Part.BottomSurface = "Smooth"
  6566. Part.formFactor = "Symmetric"
  6567. Part.Material = "Neon"
  6568. Part.BrickColor = BrickColor.new("Really black")
  6569. Part.CFrame = p.Character.Torso.CFrame
  6570. Part.Size = Vector3.new(1.75,1.75,1.75)
  6571. Part.Transparency = 1
  6572.  
  6573. local Weld = Instance.new("Weld")
  6574. Weld.Parent = p.Character.Head
  6575. Weld.Part0 = p.Character.Head
  6576. Weld.Part1 = Part
  6577. Weld.C0 = CFrame.new(0, 1, 0)
  6578.  
  6579. local ssjgaurax = Instance.new("ParticleEmitter",Part)
  6580. ssjgaurax.Name = "aura"
  6581. ssjgaurax.Texture = "rbxassetid://1095778764"
  6582. ssjgaurax.Color = ColorSequence.new(list4)
  6583. ssjgaurax.Transparency = NumberSequence.new(list)
  6584. ssjgaurax.LightEmission = 1
  6585. ssjgaurax.Speed = NumberRange.new(0)
  6586. ssjgaurax.SpreadAngle = Vector2.new(0,0)
  6587. ssjgaurax.RotSpeed = NumberRange.new(0)
  6588. ssjgaurax.Rotation = NumberRange.new(0)
  6589. ssjgaurax.LightInfluence = 0
  6590. ssjgaurax.Size = NumberSequence.new(list6)
  6591. ssjgaurax.Lifetime = NumberRange.new(2)
  6592. ssjgaurax.Rate = 9
  6593. ssjgaurax.ZOffset = 0
  6594. ssjgaurax.Acceleration = Vector3.new(0,0.05,0)
  6595. ssjgaurax.LockedToPart = true
  6596. ssjgaurax.Enabled = true
  6597.  
  6598. local ssjgaurak = Instance.new("ParticleEmitter",Part2)
  6599. ssjgaurak.Name = "aura"
  6600. ssjgaurak.Texture = "rbxassetid://1095778764"
  6601. ssjgaurak.Color = ColorSequence.new(list4)
  6602. ssjgaurak.Transparency = NumberSequence.new(list)
  6603. ssjgaurak.LightEmission = 1
  6604. ssjgaurak.Speed = NumberRange.new(0)
  6605. ssjgaurak.SpreadAngle = Vector2.new(0,0)
  6606. ssjgaurak.RotSpeed = NumberRange.new(0)
  6607. ssjgaurak.Rotation = NumberRange.new(0)
  6608. ssjgaurak.LightInfluence = 0
  6609. ssjgaurak.Size = NumberSequence.new(list6)
  6610. ssjgaurak.Lifetime = NumberRange.new(2)
  6611. ssjgaurak.Rate = 9
  6612. ssjgaurak.ZOffset = 0
  6613. ssjgaurak.Acceleration = Vector3.new(0,0.05,0)
  6614. ssjgaurak.LockedToPart = true
  6615. ssjgaurak.Enabled = true
  6616.  
  6617. local ssjgaura = Instance.new("ParticleEmitter",hed)
  6618. ssjgaura.Name = "aura"
  6619. ssjgaura.Texture = "rbxassetid://1095778764"
  6620. ssjgaura.Color = ColorSequence.new(list4)
  6621. ssjgaura.Transparency = NumberSequence.new(list)
  6622. ssjgaura.LightEmission = 1
  6623. ssjgaura.Speed = NumberRange.new(0)
  6624. ssjgaura.SpreadAngle = Vector2.new(0,0)
  6625. ssjgaura.RotSpeed = NumberRange.new(0)
  6626. ssjgaura.Rotation = NumberRange.new(0)
  6627. ssjgaura.LightInfluence = 0
  6628. ssjgaura.Size = NumberSequence.new(list6)
  6629. ssjgaura.Lifetime = NumberRange.new(3)
  6630. ssjgaura.Rate = 20
  6631. ssjgaura.ZOffset = 0
  6632. ssjgaura.Acceleration = Vector3.new(0,0.05,0)
  6633. ssjgaura.LockedToPart = true
  6634. ssjgaura.Enabled = true
  6635.  
  6636. local ssjgaura3 = Instance.new("ParticleEmitter",arm1)
  6637. ssjgaura3.Name = "aura"
  6638. ssjgaura3.Texture = "rbxassetid://1095778764"
  6639. ssjgaura3.Color = ColorSequence.new(list4)
  6640. ssjgaura3.Transparency = NumberSequence.new(list)
  6641. ssjgaura3.LightEmission = 1
  6642. ssjgaura3.LightInfluence = 0
  6643. ssjgaura3.Speed = NumberRange.new(0)
  6644. ssjgaura3.SpreadAngle = Vector2.new(0,0)
  6645. ssjgaura3.RotSpeed = NumberRange.new(0)
  6646. ssjgaura3.Rotation = NumberRange.new(0)
  6647. ssjgaura3.Size = NumberSequence.new(list5)
  6648. ssjgaura3.Lifetime = NumberRange.new(5)
  6649. ssjgaura3.Rate = 15
  6650. ssjgaura3.ZOffset = 0
  6651. ssjgaura3.Acceleration = Vector3.new(0,0.09,0)
  6652. ssjgaura3.LockedToPart = true
  6653.  
  6654. local ssjgaura4 = Instance.new("ParticleEmitter",arm2)
  6655. ssjgaura4.Name = "aura"
  6656. ssjgaura4.Texture = "rbxassetid://1095778764"
  6657. ssjgaura4.Color = ColorSequence.new(list4)
  6658. ssjgaura4.Transparency = NumberSequence.new(list)
  6659. ssjgaura4.LightEmission = 1
  6660. ssjgaura4.LightInfluence = 0
  6661. ssjgaura4.Speed = NumberRange.new(0)
  6662. ssjgaura4.SpreadAngle = Vector2.new(0,0)
  6663. ssjgaura4.RotSpeed = NumberRange.new(0)
  6664. ssjgaura4.Rotation = NumberRange.new(0)
  6665. ssjgaura4.Size = NumberSequence.new(list5)
  6666. ssjgaura4.Lifetime = NumberRange.new(5)
  6667. ssjgaura4.Rate = 15
  6668. ssjgaura4.ZOffset = 0
  6669. ssjgaura4.Acceleration = Vector3.new(0,0.09,0)
  6670. ssjgaura4.LockedToPart = true
  6671.  
  6672. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  6673. ssjgaurag.Name = "aura2"
  6674. ssjgaurag.Texture = "rbxassetid://1095778764"
  6675. ssjgaurag.Color = ColorSequence.new(list4)
  6676. ssjgaurag.Transparency = NumberSequence.new(list)
  6677. ssjgaurag.LightEmission = 1
  6678. ssjgaurag.LightInfluence = 1
  6679. ssjgaurag.Speed = NumberRange.new(0)
  6680. ssjgaurag.SpreadAngle = Vector2.new(0,0)
  6681. ssjgaurag.RotSpeed = NumberRange.new(0)
  6682. ssjgaurag.Rotation = NumberRange.new(0)
  6683. ssjgaurag.Size = NumberSequence.new(list5)
  6684. ssjgaurag.Lifetime = NumberRange.new(5)
  6685. ssjgaurag.Rate = 15
  6686. ssjgaurag.ZOffset = 0
  6687. ssjgaurag.Acceleration = Vector3.new(0,0.09,0)
  6688. ssjgaurag.LockedToPart = true
  6689.  
  6690. local ssjgaura1 = Instance.new("ParticleEmitter",leg1)
  6691. ssjgaura1.Name = "aura"
  6692. ssjgaura1.Texture = "rbxassetid://1095778764"
  6693. ssjgaura1.Color = ColorSequence.new(list4)
  6694. ssjgaura1.Transparency = NumberSequence.new(list)
  6695. ssjgaura1.LightEmission = 1
  6696. ssjgaura1.LightInfluence = 0
  6697. ssjgaura1.Speed = NumberRange.new(0)
  6698. ssjgaura1.SpreadAngle = Vector2.new(0,0)
  6699. ssjgaura1.RotSpeed = NumberRange.new(0)
  6700. ssjgaura1.Rotation = NumberRange.new(0)
  6701. ssjgaura1.Size = NumberSequence.new(list5)
  6702. ssjgaura1.Lifetime = NumberRange.new(5)
  6703. ssjgaura1.Rate = 15
  6704. ssjgaura1.ZOffset = 0
  6705. ssjgaura1.Acceleration = Vector3.new(0,0.09,0)
  6706. ssjgaura1.LockedToPart = true
  6707.  
  6708. local ssjgaura2 = Instance.new("ParticleEmitter",leg2)
  6709. ssjgaura2.Name = "aura"
  6710. ssjgaura2.Texture = "rbxassetid://1095778764"
  6711. ssjgaura2.Color = ColorSequence.new(list4)
  6712. ssjgaura2.Transparency = NumberSequence.new(list)
  6713. ssjgaura2.LightEmission = 1
  6714. ssjgaura2.LightInfluence = 0
  6715. ssjgaura2.Speed = NumberRange.new(0)
  6716. ssjgaura2.SpreadAngle = Vector2.new(0,0)
  6717. ssjgaura2.RotSpeed = NumberRange.new(0)
  6718. ssjgaura2.Rotation = NumberRange.new(0)
  6719. ssjgaura2.Size = NumberSequence.new(list5)
  6720. ssjgaura2.Lifetime = NumberRange.new(5)
  6721. ssjgaura2.Rate = 15
  6722. ssjgaura2.ZOffset = 0
  6723. ssjgaura2.Acceleration = Vector3.new(0,0.09,0)
  6724. ssjgaura2.LockedToPart = true
  6725.  
  6726. local part = Instance.new("Part",char)
  6727. part.Transparency = 1
  6728. part.Size = Vector3.new(1,1,1)
  6729. local pw = Instance.new("Weld",part)
  6730. pw.Part0 = tor
  6731. pw.Part1 = part
  6732. pw.C1 = CFrame.new(0,2.3,0)
  6733.  
  6734. local fla11 = Instance.new("ParticleEmitter",part)
  6735. fla11.Name = "Flame"
  6736. fla11.Color = ColorSequence.new(Color3.fromRGB(255,255,255),Color3.fromRGB(255,255,255))
  6737. fla11.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6738. fla11.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,10,0),NumberSequenceKeypoint.new(1,15,0)})
  6739. fla11.LightEmission = 2.5
  6740. fla11.Rate = 2500
  6741. fla11.Lifetime = NumberRange.new(50)
  6742. fla11.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,0,0)})
  6743. fla11.Speed = NumberRange.new(125)
  6744. fla11.SpreadAngle = Vector2.new(89,89)
  6745.  
  6746. local fla12 = Instance.new("ParticleEmitter",part)
  6747. fla12.Name = "Flame"
  6748. fla12.Color = ColorSequence.new(Color3.fromRGB(255,255,255),Color3.fromRGB(255,255,255))
  6749. fla12.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  6750. fla12.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,5,0),NumberSequenceKeypoint.new(1,10,0)})
  6751. fla12.LightEmission = 5
  6752. fla12.Rate = 550
  6753. fla12.Lifetime = NumberRange.new(50)
  6754. fla12.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,0,0)})
  6755. fla12.Speed = NumberRange.new(150)
  6756. fla12.SpreadAngle = Vector2.new(80,80)
  6757.  
  6758. local num = 0
  6759. local a21e = Instance.new("Part",char)
  6760. a21e.Name = "Beam"..num
  6761. a21e.Locked = true
  6762. a21e.Size = Vector3.new(2,2,2)
  6763. a21e.CanCollide = false
  6764. a21e.Position = hrp.Position
  6765. a21e.BrickColor = BrickColor.new("Institutional white")
  6766. a21e.Material = "Neon"
  6767. a21e.Transparency = 0
  6768. local aa21e = Instance.new("SpecialMesh",a21e)
  6769. a21e.Anchored = true
  6770. a21e.Position = hrp.Position
  6771. aa21e.MeshType = "Sphere"
  6772. aa21e.Scale = Vector3.new(2,2,2)
  6773.  
  6774. GroundShake2 = false
  6775.  
  6776. --local cc = Instance.new("ColorCorrectionEffect",game.Lighting)
  6777. --cc.Name = "effect"
  6778.  
  6779. --[[local Mus2 = Instance.new("Sound",char)
  6780. Mus2.SoundId = "rbxassetid://301184111"
  6781. Mus2.Volume = 4
  6782. Mus2.Looped = false
  6783. Mus2:Play()--]]
  6784. Mus1:Play()
  6785.  
  6786. Mus.SoundId = "rbxassetid://1173681504"
  6787.  
  6788. Mus:Play()
  6789.  
  6790. for i = 1,12 do
  6791. for _,player in pairs(game.Players:GetPlayers()) do
  6792. hum.CameraOffset = Vector3.new(math.random(-0.8,0.8),math.random(-0.9,0.9),math.random(-0.8,0.8))
  6793. wait()
  6794. hum.CameraOffset = Vector3.new(0,0,0)
  6795. --cc.Brightness = cc.Brightness + 0.1
  6796. aa21e.Scale = aa21e.Scale + Vector3.new(1.99,1.99,1.99)
  6797. a21e.Transparency = a21e.Transparency + 0.01
  6798.  
  6799. end
  6800. end
  6801.  
  6802. --GroundShake = false
  6803.  
  6804. wait(.1)
  6805.  
  6806. a21e:Remove()
  6807.  
  6808. part:Remove()
  6809.  
  6810. wait()
  6811.  
  6812. normal = false
  6813. automoviment = true
  6814. dodge = true
  6815.  
  6816. ultrainstinct = true
  6817.  
  6818. hum.WalkSpeed = 599.999999999999999999999999999999999999999999
  6819. hum.JumpPower = 225.555555555555555555555555555555555555555555
  6820.  
  6821. being = false
  6822.  
  6823.  
  6824. end
  6825. end
  6826. end
  6827.  
  6828. end
  6829.  
  6830. end
  6831.  
  6832.  
  6833. function mui()
  6834.  
  6835. if hum.Health <= 10001 then
  6836.  
  6837. if normal == true then
  6838. if ssjg == false and ssj1 == false and ssjb == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false and fullpowerssj == false then
  6839. if being == false then
  6840. being = true
  6841.  
  6842. GroundWave1()
  6843.  
  6844. Mus.SoundId = "rbxassetid://164587633"
  6845. Mus.Volume = 10
  6846. Mus:Play()
  6847.  
  6848.  
  6849. wait(3)
  6850.  
  6851. rock = false
  6852.  
  6853. wait(1.12)
  6854.  
  6855. chatfunc("You've really pushed me to the limit, didn't you?")
  6856.  
  6857. Mus.Pitch = 1
  6858.  
  6859. wait(2.7)
  6860.  
  6861. rock = false
  6862. rock3 = true
  6863. rock3 = true
  6864.  
  6865. GroundWave0()
  6866.  
  6867. local tra = Instance.new('ParticleEmitter')
  6868. tra.Parent = tor
  6869. tra.LightEmission = 1
  6870. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6871. tra.Texture = "rbxassetid://1177925800"
  6872. tra.Rate = 15
  6873. tra.Rotation = NumberRange.new(-5, 5)
  6874. tra.Lifetime = NumberRange.new(1.5, 2)
  6875. tra.Size = NumberSequence.new(0.098,0)
  6876. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6877. tra.Speed = NumberRange.new(0.5)
  6878. tra.VelocitySpread = 360
  6879. tra.VelocityInheritance = 0.5
  6880. tra.ZOffset = 2
  6881. tra.LockedToPart = true
  6882. tra.EmissionDirection = Enum.NormalId.Top
  6883. local tra = Instance.new('ParticleEmitter')
  6884. tra.Parent = arm1
  6885. tra.LightEmission = 1
  6886. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6887. tra.Texture = "rbxassetid://1177925800"
  6888. tra.Rate = 15
  6889. tra.Rotation = NumberRange.new(-5, 5)
  6890. tra.Lifetime = NumberRange.new(1.5, 2)
  6891. tra.Size = NumberSequence.new(0.098,0)
  6892. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6893. tra.Speed = NumberRange.new(0.5)
  6894. tra.VelocitySpread = 360
  6895. tra.VelocityInheritance = 0.5
  6896. tra.ZOffset = 2
  6897. tra.LockedToPart = true
  6898. tra.EmissionDirection = Enum.NormalId.Top
  6899. local tra = Instance.new('ParticleEmitter')
  6900. tra.Parent = arm2
  6901. tra.LightEmission = 1
  6902. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6903. tra.Texture = "rbxassetid://1177925800"
  6904. tra.Rate = 15
  6905. tra.Rotation = NumberRange.new(-5, 5)
  6906. tra.Lifetime = NumberRange.new(1.5, 2)
  6907. tra.Size = NumberSequence.new(0.098,0)
  6908. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6909. tra.Speed = NumberRange.new(0.5)
  6910. tra.VelocitySpread = 360
  6911. tra.VelocityInheritance = 0.5
  6912. tra.ZOffset = 2
  6913. tra.LockedToPart = true
  6914. tra.EmissionDirection = Enum.NormalId.Top
  6915. local tra = Instance.new('ParticleEmitter')
  6916. tra.Parent = leg1
  6917. tra.LightEmission = 1
  6918. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6919. tra.Texture = "rbxassetid://1177925800"
  6920. tra.Rate = 15
  6921. tra.Rotation = NumberRange.new(-5, 5)
  6922. tra.Lifetime = NumberRange.new(1.5, 2)
  6923. tra.Size = NumberSequence.new(0.098,0)
  6924. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6925. tra.Speed = NumberRange.new(0.5)
  6926. tra.VelocitySpread = 360
  6927. tra.VelocityInheritance = 0.5
  6928. tra.ZOffset = 2
  6929. tra.LockedToPart = true
  6930. tra.EmissionDirection = Enum.NormalId.Top
  6931. local tra = Instance.new('ParticleEmitter')
  6932. tra.Parent = leg2
  6933. tra.LightEmission = 1
  6934. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6935. tra.Texture = "rbxassetid://1177925800"
  6936. tra.Rate = 15
  6937. tra.Rotation = NumberRange.new(-5, 5)
  6938. tra.Lifetime = NumberRange.new(1.5, 2)
  6939. tra.Size = NumberSequence.new(0.098,0)
  6940. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6941. tra.Speed = NumberRange.new(0.5)
  6942. tra.VelocitySpread = 360
  6943. tra.VelocityInheritance = 0.5
  6944. tra.ZOffset = 2
  6945. tra.LockedToPart = true
  6946. tra.EmissionDirection = Enum.NormalId.Top
  6947. local tra = Instance.new('ParticleEmitter')
  6948. tra.Parent = hed
  6949. tra.LightEmission = 1
  6950. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6951. tra.Texture = "rbxassetid://1177925800"
  6952. tra.Rate = 15
  6953. tra.Rotation = NumberRange.new(-5, 5)
  6954. tra.Lifetime = NumberRange.new(1.5, 2)
  6955. tra.Size = NumberSequence.new(0.098,0)
  6956. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6957. tra.Speed = NumberRange.new(0.5)
  6958. tra.VelocitySpread = 360
  6959. tra.VelocityInheritance = 0.5
  6960. tra.ZOffset = 2
  6961. tra.LockedToPart = true
  6962. tra.EmissionDirection = Enum.NormalId.Top
  6963. local tra = Instance.new('ParticleEmitter')
  6964. tra.Parent = Hair7
  6965. tra.LightEmission = 1
  6966. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  6967. tra.Texture = "rbxassetid://1177925800"
  6968. tra.Rate = 15
  6969. tra.Rotation = NumberRange.new(-5, 5)
  6970. tra.Lifetime = NumberRange.new(1.5, 2)
  6971. tra.Size = NumberSequence.new(0.098,0)
  6972. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  6973. tra.Speed = NumberRange.new(0.5)
  6974. tra.VelocitySpread = 360
  6975. tra.VelocityInheritance = 0.5
  6976. tra.ZOffset = 2
  6977. tra.LockedToPart = true
  6978. tra.EmissionDirection = Enum.NormalId.Top
  6979.  
  6980. hed.face.Texture = "rbxassetid://967842214"
  6981.  
  6982. wait(3)
  6983.  
  6984. chatfunc("I won't hold back...")
  6985.  
  6986. wait(0.1)
  6987.  
  6988. GroundWave1()
  6989.  
  6990. --wait(0.9)
  6991.  
  6992. --GroundShake = true
  6993. --GroundShake2 = true
  6994.  
  6995. --wait(1)
  6996.  
  6997. --GroundShake2 = false
  6998. --GroundShake = false
  6999.  
  7000. hum.WalkSpeed = 0
  7001. hum.JumpPower = 0
  7002.  
  7003. wait(2.05)
  7004.  
  7005. --GroundShake2 = true
  7006. --GroundShake = true
  7007.  
  7008. for i = 1,6 do
  7009. for _,player in pairs(game.Players:GetPlayers()) do
  7010. hum.CameraOffset = Vector3.new(math.random(-0.8,0.8),math.random(-0.9,0.9),math.random(-0.8,0.8))
  7011.  
  7012. wait()
  7013.  
  7014. --GroundShake2 = true
  7015. --GroundShake = true
  7016.  
  7017. hum.CameraOffset = Vector3.new(0,0,0)
  7018. end
  7019.  
  7020. end
  7021.  
  7022. Hair7:Destroy()
  7023. Hair7 = Instance.new("Part")
  7024. Hair7.Parent = char
  7025. Hair7.Name = "Hair"
  7026. Hair7.CanCollide = false
  7027. Hair7.Locked = true
  7028. Hair7.TopSurface = "Smooth"
  7029. Hair7.BottomSurface = "Smooth"
  7030. Hair7.formFactor = "Symmetric"
  7031. Hair7.Material = "Neon"
  7032. Hair7.BrickColor = BrickColor.new("Lily white")
  7033. Hair7.CFrame = char.Torso.CFrame
  7034. Hair7.Size = Vector3.new(1, 1, 1)
  7035. Hair7.Transparency = 0
  7036.  
  7037.  
  7038. Weld1 = Instance.new("Weld")
  7039. Weld1.Parent = char.Head
  7040. Weld1.Part0 = char.Head
  7041. Weld1.Part1 = Hair7
  7042. Weld1.C0 = CFrame.new(0, 1.1, -0.16) * CFrame.Angles(math.rad(0),math.rad(180),math.rad(0))
  7043.  
  7044. Mesh = Instance.new("SpecialMesh")
  7045. Mesh.Offset = Vector3.new(0,-0.2,-0.14)
  7046. Mesh.Parent = Hair7
  7047. Mesh.Scale = Vector3.new(6.3,4.8,6.2)
  7048. Mesh.MeshType = "FileMesh"
  7049. Mesh.MeshId = "http://www.roblox.com/asset/?id=1125231485"
  7050. Mesh.TextureId = ""
  7051.  
  7052. local tra = Instance.new('ParticleEmitter')
  7053. tra.Parent = Hair7
  7054. tra.LightEmission = 1
  7055. tra.Color = ColorSequence.new(BrickColor.new("White").Color)
  7056. tra.Texture = "rbxassetid://1177925800"
  7057. tra.Rate = 15
  7058. tra.Rotation = NumberRange.new(-5, 5)
  7059. tra.Lifetime = NumberRange.new(1.5, 2)
  7060. tra.Size = NumberSequence.new(0.098,0)
  7061. tra.Transparency = NumberSequence.new(0.474,0.893,0.952,0.991)
  7062. tra.Speed = NumberRange.new(0.5)
  7063. tra.VelocitySpread = 360
  7064. tra.VelocityInheritance = 0.5
  7065. tra.ZOffset = 2
  7066. tra.EmissionDirection = Enum.NormalId.Top
  7067. tra.LockedToPart = true
  7068.  
  7069. hed.face.Texture = "rbxassetid://1498326077"
  7070. shirt.ShirtTemplate = "rbxassetid://1518066616"
  7071. pants.PantsTemplate = "rbxassetid://1448562896"
  7072.  
  7073.  
  7074. local list = {NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(0.371,0.525,0),NumberSequenceKeypoint.new(0.775,0.579,0),NumberSequenceKeypoint.new(1,0.985,0)}
  7075.  
  7076. local color1 = Color3.fromRGB(0,115,255)
  7077. local color2 = Color3.fromRGB(180,125,255)
  7078. local color3 = Color3.fromRGB(255,255,255)
  7079.  
  7080. local list4 = {ColorSequenceKeypoint.new(0,color1),ColorSequenceKeypoint.new(0.7,color2),ColorSequenceKeypoint.new(1,color3)}
  7081.  
  7082. local list5 = {NumberSequenceKeypoint.new(0,0.425,0),NumberSequenceKeypoint.new(0.29,0.899,0),NumberSequenceKeypoint.new(0.59,0.955,0),NumberSequenceKeypoint.new(1,0.579,0)}
  7083.  
  7084. local list6 = {NumberSequenceKeypoint.new(0,0.429,0),NumberSequenceKeypoint.new(0.29,0.9,0),NumberSequenceKeypoint.new(0.59,0.959,0),NumberSequenceKeypoint.new(1,0.589,0)}
  7085.  
  7086. local Part2 = Instance.new("Part")
  7087. Part2.Parent = char
  7088. Part2.Name = "Part9"
  7089. Part2.CanCollide = false
  7090. Part2.Locked = true
  7091. Part2.TopSurface = "Smooth"
  7092. Part2.BottomSurface = "Smooth"
  7093. Part2.formFactor = "Symmetric"
  7094. Part2.Material = "Neon"
  7095. Part2.BrickColor = BrickColor.new("Really black")
  7096. Part2.CFrame = p.Character.Torso.CFrame
  7097. Part2.Size = Vector3.new(2,2,2)
  7098. Part2.Transparency = 1
  7099.  
  7100. local Mesh3 = Instance.new("SpecialMesh")
  7101. Mesh3.Offset = Vector3.new(0.2, -0.2, 0.2)
  7102. Mesh3.Parent = Part2
  7103. Mesh3.Scale = Vector3.new(1, 1, 1)
  7104. Mesh3.MeshType = "FileMesh"
  7105. Mesh3.MeshId = "http://www.roblox.com/asset/?id=476757756"
  7106. Mesh3.TextureId = ""
  7107.  
  7108.  
  7109. local Weld5 = Instance.new("Weld")
  7110. Weld5.Parent = p.Character.Head
  7111. Weld5.Part0 = p.Character.Head
  7112. Weld5.Part1 = Part2
  7113.  
  7114. Part2.Color = Color3.fromRGB(5,5,5)
  7115. Hair7.Color = Color3.fromRGB(225,225,225)
  7116. Mesh3.MeshId = "rbxassetid://430344159"
  7117. Mesh3.Scale = Vector3.new(3.8,3.8,3.8)
  7118. Weld5.C0 = CFrame.new(-.25,1.2,.34)
  7119.  
  7120. local Part = Instance.new("Part")
  7121. Part.Parent = char
  7122. Part.Name = "Part8"
  7123. Part.CanCollide = false
  7124. Part.Locked = true
  7125. Part.TopSurface = "Smooth"
  7126. Part.BottomSurface = "Smooth"
  7127. Part.formFactor = "Symmetric"
  7128. Part.Material = "Neon"
  7129. Part.BrickColor = BrickColor.new("Really black")
  7130. Part.CFrame = p.Character.Torso.CFrame
  7131. Part.Size = Vector3.new(1.75,1.75,1.75)
  7132. Part.Transparency = 1
  7133.  
  7134. local Weld = Instance.new("Weld")
  7135. Weld.Parent = p.Character.Head
  7136. Weld.Part0 = p.Character.Head
  7137. Weld.Part1 = Part
  7138. Weld.C0 = CFrame.new(0, 1, 0)
  7139.  
  7140. local ssjgaurax = Instance.new("ParticleEmitter",Part)
  7141. ssjgaurax.Name = "aura"
  7142. ssjgaurax.Texture = "rbxassetid://1095778764"
  7143. ssjgaurax.Color = ColorSequence.new(list4)
  7144. ssjgaurax.Transparency = NumberSequence.new(list)
  7145. ssjgaurax.LightEmission = 1
  7146. ssjgaurax.Speed = NumberRange.new(0)
  7147. ssjgaurax.SpreadAngle = Vector2.new(0,0)
  7148. ssjgaurax.RotSpeed = NumberRange.new(0)
  7149. ssjgaurax.Rotation = NumberRange.new(0)
  7150. ssjgaurax.LightInfluence = 0
  7151. ssjgaurax.Size = NumberSequence.new(list6)
  7152. ssjgaurax.Lifetime = NumberRange.new(2)
  7153. ssjgaurax.Rate = 9
  7154. ssjgaurax.ZOffset = 0
  7155. ssjgaurax.Acceleration = Vector3.new(0,0.05,0)
  7156. ssjgaurax.LockedToPart = true
  7157. ssjgaurax.Enabled = true
  7158.  
  7159. local ssjgaurak = Instance.new("ParticleEmitter",Part2)
  7160. ssjgaurak.Name = "aura"
  7161. ssjgaurak.Texture = "rbxassetid://1095778764"
  7162. ssjgaurak.Color = ColorSequence.new(list4)
  7163. ssjgaurak.Transparency = NumberSequence.new(list)
  7164. ssjgaurak.LightEmission = 1
  7165. ssjgaurak.Speed = NumberRange.new(0)
  7166. ssjgaurak.SpreadAngle = Vector2.new(0,0)
  7167. ssjgaurak.RotSpeed = NumberRange.new(0)
  7168. ssjgaurak.Rotation = NumberRange.new(0)
  7169. ssjgaurak.LightInfluence = 0
  7170. ssjgaurak.Size = NumberSequence.new(list6)
  7171. ssjgaurak.Lifetime = NumberRange.new(2)
  7172. ssjgaurak.Rate = 9
  7173. ssjgaurak.ZOffset = 0
  7174. ssjgaurak.Acceleration = Vector3.new(0,0.05,0)
  7175. ssjgaurak.LockedToPart = true
  7176. ssjgaurak.Enabled = true
  7177.  
  7178. local ssjgaura = Instance.new("ParticleEmitter",hed)
  7179. ssjgaura.Name = "aura"
  7180. ssjgaura.Texture = "rbxassetid://1095778764"
  7181. ssjgaura.Color = ColorSequence.new(list4)
  7182. ssjgaura.Transparency = NumberSequence.new(list)
  7183. ssjgaura.LightEmission = 1
  7184. ssjgaura.Speed = NumberRange.new(0)
  7185. ssjgaura.SpreadAngle = Vector2.new(0,0)
  7186. ssjgaura.RotSpeed = NumberRange.new(0)
  7187. ssjgaura.Rotation = NumberRange.new(0)
  7188. ssjgaura.LightInfluence = 0
  7189. ssjgaura.Size = NumberSequence.new(list6)
  7190. ssjgaura.Lifetime = NumberRange.new(3)
  7191. ssjgaura.Rate = 20
  7192. ssjgaura.ZOffset = 0
  7193. ssjgaura.Acceleration = Vector3.new(0,0.05,0)
  7194. ssjgaura.LockedToPart = true
  7195. ssjgaura.Enabled = true
  7196.  
  7197. local ssjgaura3 = Instance.new("ParticleEmitter",arm1)
  7198. ssjgaura3.Name = "aura"
  7199. ssjgaura3.Texture = "rbxassetid://1095778764"
  7200. ssjgaura3.Color = ColorSequence.new(list4)
  7201. ssjgaura3.Transparency = NumberSequence.new(list)
  7202. ssjgaura3.LightEmission = 1
  7203. ssjgaura3.LightInfluence = 0
  7204. ssjgaura3.Speed = NumberRange.new(0)
  7205. ssjgaura3.SpreadAngle = Vector2.new(0,0)
  7206. ssjgaura3.RotSpeed = NumberRange.new(0)
  7207. ssjgaura3.Rotation = NumberRange.new(0)
  7208. ssjgaura3.Size = NumberSequence.new(list5)
  7209. ssjgaura3.Lifetime = NumberRange.new(5)
  7210. ssjgaura3.Rate = 15
  7211. ssjgaura3.ZOffset = 0
  7212. ssjgaura3.Acceleration = Vector3.new(0,0.09,0)
  7213. ssjgaura3.LockedToPart = true
  7214.  
  7215. local ssjgaura4 = Instance.new("ParticleEmitter",arm2)
  7216. ssjgaura4.Name = "aura"
  7217. ssjgaura4.Texture = "rbxassetid://1095778764"
  7218. ssjgaura4.Color = ColorSequence.new(list4)
  7219. ssjgaura4.Transparency = NumberSequence.new(list)
  7220. ssjgaura4.LightEmission = 1
  7221. ssjgaura4.LightInfluence = 0
  7222. ssjgaura4.Speed = NumberRange.new(0)
  7223. ssjgaura4.SpreadAngle = Vector2.new(0,0)
  7224. ssjgaura4.RotSpeed = NumberRange.new(0)
  7225. ssjgaura4.Rotation = NumberRange.new(0)
  7226. ssjgaura4.Size = NumberSequence.new(list5)
  7227. ssjgaura4.Lifetime = NumberRange.new(5)
  7228. ssjgaura4.Rate = 15
  7229. ssjgaura4.ZOffset = 0
  7230. ssjgaura4.Acceleration = Vector3.new(0,0.09,0)
  7231. ssjgaura4.LockedToPart = true
  7232.  
  7233. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  7234. ssjgaurag.Name = "aura2"
  7235. ssjgaurag.Texture = "rbxassetid://1095778764"
  7236. ssjgaurag.Color = ColorSequence.new(list4)
  7237. ssjgaurag.Transparency = NumberSequence.new(list)
  7238. ssjgaurag.LightEmission = 1
  7239. ssjgaurag.LightInfluence = 1
  7240. ssjgaurag.Speed = NumberRange.new(0)
  7241. ssjgaurag.SpreadAngle = Vector2.new(0,0)
  7242. ssjgaurag.RotSpeed = NumberRange.new(0)
  7243. ssjgaurag.Rotation = NumberRange.new(0)
  7244. ssjgaurag.Size = NumberSequence.new(list5)
  7245. ssjgaurag.Lifetime = NumberRange.new(5)
  7246. ssjgaurag.Rate = 15
  7247. ssjgaurag.ZOffset = 0
  7248. ssjgaurag.Acceleration = Vector3.new(0,0.09,0)
  7249. ssjgaurag.LockedToPart = true
  7250.  
  7251. local ssjgaura1 = Instance.new("ParticleEmitter",leg1)
  7252. ssjgaura1.Name = "aura"
  7253. ssjgaura1.Texture = "rbxassetid://1095778764"
  7254. ssjgaura1.Color = ColorSequence.new(list4)
  7255. ssjgaura1.Transparency = NumberSequence.new(list)
  7256. ssjgaura1.LightEmission = 1
  7257. ssjgaura1.LightInfluence = 0
  7258. ssjgaura1.Speed = NumberRange.new(0)
  7259. ssjgaura1.SpreadAngle = Vector2.new(0,0)
  7260. ssjgaura1.RotSpeed = NumberRange.new(0)
  7261. ssjgaura1.Rotation = NumberRange.new(0)
  7262. ssjgaura1.Size = NumberSequence.new(list5)
  7263. ssjgaura1.Lifetime = NumberRange.new(5)
  7264. ssjgaura1.Rate = 15
  7265. ssjgaura1.ZOffset = 0
  7266. ssjgaura1.Acceleration = Vector3.new(0,0.09,0)
  7267. ssjgaura1.LockedToPart = true
  7268.  
  7269. local ssjgaura2 = Instance.new("ParticleEmitter",leg2)
  7270. ssjgaura2.Name = "aura"
  7271. ssjgaura2.Texture = "rbxassetid://1095778764"
  7272. ssjgaura2.Color = ColorSequence.new(list4)
  7273. ssjgaura2.Transparency = NumberSequence.new(list)
  7274. ssjgaura2.LightEmission = 1
  7275. ssjgaura2.LightInfluence = 0
  7276. ssjgaura2.Speed = NumberRange.new(0)
  7277. ssjgaura2.SpreadAngle = Vector2.new(0,0)
  7278. ssjgaura2.RotSpeed = NumberRange.new(0)
  7279. ssjgaura2.Rotation = NumberRange.new(0)
  7280. ssjgaura2.Size = NumberSequence.new(list5)
  7281. ssjgaura2.Lifetime = NumberRange.new(5)
  7282. ssjgaura2.Rate = 15
  7283. ssjgaura2.ZOffset = 0
  7284. ssjgaura2.Acceleration = Vector3.new(0,0.09,0)
  7285. ssjgaura2.LockedToPart = true
  7286.  
  7287. local part = Instance.new("Part",char)
  7288. part.Transparency = 1
  7289. part.Size = Vector3.new(1,1,1)
  7290. local pw = Instance.new("Weld",part)
  7291. pw.Part0 = tor
  7292. pw.Part1 = part
  7293. pw.C1 = CFrame.new(0,2.3,0)
  7294.  
  7295. local fla11 = Instance.new("ParticleEmitter",part)
  7296. fla11.Name = "Flame"
  7297. fla11.Color = ColorSequence.new(Color3.fromRGB(255,255,255),Color3.fromRGB(255,255,255))
  7298. fla11.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  7299. fla11.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,10,0),NumberSequenceKeypoint.new(1,15,0)})
  7300. fla11.LightEmission = 2.5
  7301. fla11.Rate = 2500
  7302. fla11.Lifetime = NumberRange.new(50)
  7303. fla11.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,0,0)})
  7304. fla11.Speed = NumberRange.new(125)
  7305. fla11.SpreadAngle = Vector2.new(89,89)
  7306.  
  7307. local fla12 = Instance.new("ParticleEmitter",part)
  7308. fla12.Name = "Flame"
  7309. fla12.Color = ColorSequence.new(Color3.fromRGB(255,255,255),Color3.fromRGB(255,255,255))
  7310. fla12.Texture = "rbxasset://textures/particles/explosion01_implosion_main.dds"
  7311. fla12.Size = NumberSequence.new({NumberSequenceKeypoint.new(0,5,0),NumberSequenceKeypoint.new(1,10,0)})
  7312. fla12.LightEmission = 5
  7313. fla12.Rate = 550
  7314. fla12.Lifetime = NumberRange.new(50)
  7315. fla12.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,0,0),NumberSequenceKeypoint.new(1,0,0)})
  7316. fla12.Speed = NumberRange.new(150)
  7317. fla12.SpreadAngle = Vector2.new(80,80)
  7318.  
  7319. local num = 0
  7320. local a21e = Instance.new("Part",char)
  7321. a21e.Name = "Beam"..num
  7322. a21e.Locked = true
  7323. a21e.Size = Vector3.new(2,2,2)
  7324. a21e.CanCollide = false
  7325. a21e.Position = hrp.Position
  7326. a21e.BrickColor = BrickColor.new("Institutional white")
  7327. a21e.Material = "Neon"
  7328. a21e.Transparency = 0
  7329. local aa21e = Instance.new("SpecialMesh",a21e)
  7330. a21e.Anchored = true
  7331. a21e.Position = hrp.Position
  7332. aa21e.MeshType = "Sphere"
  7333. aa21e.Scale = Vector3.new(2,2,2)
  7334.  
  7335. GroundShake2 = false
  7336.  
  7337. --local cc = Instance.new("ColorCorrectionEffect",game.Lighting)
  7338. --cc.Name = "effect"
  7339.  
  7340. --[[local Mus2 = Instance.new("Sound",char)
  7341. Mus2.SoundId = "rbxassetid://301184111"
  7342. Mus2.Volume = 4
  7343. Mus2.Looped = false
  7344. Mus2:Play()--]]
  7345. Mus1:Play()
  7346.  
  7347. for i = 1,12 do
  7348. for _,player in pairs(game.Players:GetPlayers()) do
  7349. hum.CameraOffset = Vector3.new(math.random(-0.8,0.8),math.random(-0.9,0.9),math.random(-0.8,0.8))
  7350. wait()
  7351. hum.CameraOffset = Vector3.new(0,0,0)
  7352. --cc.Brightness = cc.Brightness + 0.1
  7353. aa21e.Scale = aa21e.Scale + Vector3.new(1.99,1.99,1.99)
  7354. a21e.Transparency = a21e.Transparency + 0.01
  7355.  
  7356. end
  7357. end
  7358.  
  7359. --GroundShake = false
  7360.  
  7361. wait(5)
  7362.  
  7363. a21e:Remove()
  7364.  
  7365. part:Remove()
  7366.  
  7367. wait()
  7368.  
  7369. normal = false
  7370. automoviment = true
  7371. dodge = true
  7372.  
  7373. ultrainstinct = true
  7374.  
  7375. hum.WalkSpeed = 499.999999999999999999999999999999999999999999
  7376. hum.JumpPower = 250.250000000000000000000000000000000000000000
  7377.  
  7378. being = false
  7379.  
  7380.  
  7381. end
  7382. end
  7383. end
  7384.  
  7385. end
  7386.  
  7387. end
  7388.  
  7389.  
  7390. function ssb2()
  7391.  
  7392. if normal == true then
  7393. if ssjg == false and ssj1 == false and ssjb == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false then
  7394. if being == false then
  7395. being = true
  7396. normal = false
  7397.  
  7398. chatfunc("Full Power, Super Saiyan Blue!")
  7399.  
  7400. Mus.Pitch = 1
  7401.  
  7402. hum.WalkSpeed = 0
  7403. hum.JumpPower = 0
  7404.  
  7405. Mus.SoundId = "rbxassetid://916695124"
  7406. Mus:Play()
  7407.  
  7408. Mus1:Play()
  7409.  
  7410. Hair7.Color = Color3.fromRGB(21,221,239)
  7411. ape51.Color = Color3.fromRGB(21,221,239)
  7412. Mesh.MeshId = "rbxassetid://430344159"
  7413. Mesh.Scale = Vector3.new(6.3,6.3,6.3)
  7414. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  7415.  
  7416. hed.face.Texture = "rbxassetid://670772635"
  7417.  
  7418. local num = 0
  7419. local a21e = Instance.new("Part",char)
  7420. a21e.Name = "Beam"..num
  7421. a21e.Locked = true
  7422. a21e.Size = Vector3.new(1,1,1)
  7423. a21e.CanCollide = false
  7424. a21e.Position = Vector3.new(999,999,999)
  7425. a21e.BrickColor = BrickColor.new("Bright bluish green")
  7426. a21e.Material = "Neon"
  7427. a21e.Transparency = 0
  7428. local aa21e = Instance.new("SpecialMesh",a21e)
  7429. a21e.Anchored = true
  7430. a21e.Position = hrp.Position
  7431. aa21e.MeshType = "Sphere"
  7432. aa21e.Scale = Vector3.new(1,1,1)
  7433.  
  7434. local ssjgaura = Instance.new("ParticleEmitter",tor)
  7435. ssjgaura.Name = "SSJBaura"
  7436. ssjgaura.Color = ColorSequence.new(Color3.fromRGB(125,255,255))
  7437. ssjgaura.LightEmission = 1
  7438. ssjgaura.Size = NumberSequence.new(9)
  7439. ssjgaura.Lifetime = NumberRange.new(0.9)
  7440. ssjgaura.Rate = 19
  7441. ssjgaura.ZOffset = -2.9
  7442. ssjgaura.Speed = NumberRange.new(5)
  7443. ssjgaura.LockedToPart = true
  7444.  
  7445. local ssjgaurag = Instance.new("ParticleEmitter",tor)
  7446. ssjgaurag.Name = "SSBaura2"
  7447. ssjgaurag.Color = ColorSequence.new(Color3.fromRGB(0,255,255))
  7448. ssjgaurag.LightEmission = 0.75
  7449. ssjgaurag.Size = NumberSequence.new(9)
  7450. ssjgaurag.Lifetime = NumberRange.new(0.99)
  7451. ssjgaurag.Rate = 19
  7452. ssjgaurag.ZOffset = -2.9
  7453. ssjgaurag.Speed = NumberRange.new(5.999)
  7454. ssjgaurag.SpreadAngle = Vector2.new(0.9,0.99)
  7455. ssjgaurag.LockedToPart = true
  7456.  
  7457. ssjgaura.Texture = "rbxassetid://1072541924"
  7458. ssjgaurag.Texture = "rbxassetid://1072541924"
  7459.  
  7460. tor.SSJBaura.Transparency = NumberSequence.new(0.997)
  7461. tor.SSBaura2.Transparency = NumberSequence.new(0.997)
  7462.  
  7463. for i = 1,25 do
  7464. wait()
  7465. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  7466. a21e.Transparency = a21e.Transparency + 0.04
  7467. end
  7468.  
  7469. wait(.1)
  7470.  
  7471. a21e:Remove()
  7472.  
  7473. wait()
  7474.  
  7475. hum.WalkSpeed = 110.999
  7476. hum.JumpPower = 110.999
  7477.  
  7478. being = false
  7479.  
  7480. end
  7481. end
  7482. end
  7483.  
  7484. ssjbfullpower = true
  7485.  
  7486. end
  7487.  
  7488. --
  7489.  
  7490. --
  7491.  
  7492. mouse.KeyDown:connect(function(key)
  7493. if key == "r" then
  7494. if ssj1 == true or fullpowerssj == true and being == false and ssj2 == false and assj2 == false and normal == false and ssjb == false and ssjg == false and kaioken == false and ssjwhite == false and ssjbfullpower == false and kaioken == false then
  7495. ss2()
  7496. end
  7497. end
  7498. end)
  7499.  
  7500. mouse.KeyDown:connect(function(key)
  7501. if key == "r" then
  7502. if ssj1 == true and being == false and ssj2 == true and kaioken == false and ssj3 == false and assj2 == false and ssjb == false and ssjwhite == false and ssjbfullpower == false and ultrainstinct == false then
  7503. ass2()
  7504. end
  7505. end
  7506. end)
  7507.  
  7508. mouse.KeyDown:connect(function(key)
  7509. if key == "y" then
  7510. if ssj1 == true and being == false and ssj2 == true and kaioken == false and ssj3 == false and assj2 == false and ssjb == false and ssjwhite == false and ssjbfullpower == false and ultrainstinct == false then
  7511. ssj4()
  7512. end
  7513. end
  7514. end)
  7515.  
  7516. mouse.KeyDown:connect(function(key)
  7517. if key == "q" then
  7518. if ssj1 == true and being == false and ssj2 == true and assj2 == false and ssj3 == false and ssjg == false and ssjb == false and ssjwhite == false and kaioken == false and ssjbfullpower == false and kaioken == false then
  7519. ss3()
  7520. end
  7521. end
  7522. end)
  7523.  
  7524. mouse.KeyDown:connect(function(key)
  7525. if key == "u" then
  7526. if ssj1 == true and being == false and ssj2 == true and assj2 == false and ssj3 == false and ssjg == false and ssjb == false and ssjwhite == false and kaioken == false and ssjbfullpower == false and kaioken == false then
  7527. sss3()
  7528. end
  7529. end
  7530. end)
  7531.  
  7532. mouse.KeyDown:connect(function(key)
  7533. if key == "u" then
  7534. if ssj1 == false and being == false and ssj2 == false and assj2 == false and ssj3 == false and ssjg == false and ssjb == false and ssjwhite == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and kaioken == false then
  7535. superior()
  7536. end
  7537. end
  7538. end)
  7539.  
  7540. mouse.KeyDown:connect(function(key)
  7541. if key == "k" then
  7542. if ssj1 == false and being == false and ssj2 == false and assj2 == false and ssj3 == false and ssjg == false and ssjb == false and ssjwhite == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and kaioken == false then
  7543. ssjr()
  7544. end
  7545. end
  7546. end)
  7547.  
  7548. mouse.KeyDown:connect(function(key)
  7549. if key == "p" then
  7550. if ssj1 == false and being == false and ssj2 == false and assj2 == false and ssj3 == false and ssjg == false and ssjb == false and ssjwhite == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and kaioken == false then
  7551. mui()
  7552. end
  7553. end
  7554. end)
  7555.  
  7556. mouse.KeyDown:connect(function(key)
  7557. if key == "y" then
  7558. if ssj1 == false and being == false and ssj2 == false and assj2 == false and ssj3 == false and ssjb == false and ssjwhite == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and kaioken == false then
  7559. if hum.Health <= 10001 then
  7560. if ssjg == true or ultrainstinct == true then
  7561. normalform()
  7562. end
  7563. limitbreak()
  7564. end
  7565. end;end
  7566. end)
  7567.  
  7568. function kaio()
  7569.  
  7570. if normal == true then
  7571. if being == false then
  7572. if kaioken == false then
  7573. if kaioken2 == false then
  7574. if kaioken4 == false then
  7575. if kaioken5 == false then
  7576. if kaioken10 == false then
  7577. if kaioken20 == false then
  7578.  
  7579. being = true
  7580.  
  7581. rock4 = true
  7582.  
  7583. hum.WalkSpeed = 0
  7584. hum.JumpPower = 0
  7585.  
  7586. wait(.55)
  7587. rock = true
  7588. rock3 = true
  7589. wait(.25)
  7590. rock = false
  7591.  
  7592. chatfunc("Kaioken!")
  7593.  
  7594. local Mus1 = Instance.new("Sound",char)
  7595. Mus1.Name = "kaiokenaudio"
  7596. Mus1.SoundId = "rbxassetid://301184111"
  7597. Mus1.Pitch = 0.7
  7598. Mus1.Volume = 5
  7599. Mus1.Looped = false
  7600. Mus1:Play()
  7601.  
  7602. hum.WalkSpeed = 40
  7603. hum.JumpPower = 69
  7604.  
  7605. rock4 = false
  7606. rock = true
  7607. rock3 = true
  7608. wait(.1)
  7609. rock = false
  7610.  
  7611. local ssj2aura = Instance.new("ParticleEmitter",tor)
  7612. ssj2aura.Name = "kaiokenaura"
  7613. ssj2aura.Texture = "rbxassetid://241992237"
  7614. ssj2aura.Transparency = NumberSequence.new(0.675)
  7615. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,29,20))
  7616. ssj2aura.LightEmission = 1
  7617. ssj2aura.Size = NumberSequence.new(6)
  7618. ssj2aura.Lifetime = NumberRange.new(0.5)
  7619. ssj2aura.Rate = 15
  7620. ssj2aura.ZOffset = -1
  7621. ssj2aura.Speed = NumberRange.new(10)
  7622. ssj2aura.LockedToPart = true
  7623.  
  7624. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  7625. ssj2aura2.Name = "kaioaura"
  7626. ssj2aura2.Texture = "rbxassetid://1072507908"
  7627. ssj2aura2.Transparency = NumberSequence.new(0.259)
  7628. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,39,30))
  7629. ssj2aura2.LightEmission = 0.75
  7630. ssj2aura2.Size = NumberSequence.new(6)
  7631. ssj2aura2.Lifetime = NumberRange.new(0.5)
  7632. ssj2aura2.Rate = 20
  7633. ssj2aura2.ZOffset = -1
  7634. ssj2aura2.Speed = NumberRange.new(10)
  7635. ssj2aura2.LockedToPart = true
  7636.  
  7637. wait(1.9)
  7638.  
  7639. chatfunc("Let's get started!")
  7640.  
  7641. char.kaiokenaudio:Stop()
  7642. char.kaiokenaudio:Remove()
  7643.  
  7644. being = false
  7645.  
  7646. normal = false
  7647.  
  7648. kaioken = true
  7649. kaioken2 = true
  7650.  
  7651. end
  7652. end
  7653. end
  7654. end
  7655. end
  7656. end
  7657. end
  7658. end
  7659. ---
  7660.  
  7661. mouse.KeyDown:connect(function(key)
  7662.  
  7663. if key == "v" then
  7664.  
  7665. if normal == false then
  7666. if being == false then
  7667. if kaioken == true then
  7668. if kaioken2 == true then
  7669. if kaioken4 == false then
  7670. if kaioken5 == false then
  7671. if kaioken10 == false then
  7672. if kaioken20 == false then
  7673. being = true
  7674.  
  7675. rock4 = true
  7676.  
  7677. hum.WalkSpeed = 0
  7678. hum.JumpPower = 0
  7679.  
  7680. wait(.55)
  7681. rock = true
  7682. rock3 = true
  7683. wait(.25)
  7684. rock = false
  7685.  
  7686. chatfunc("Kaioken, TIMES FOUR!!")
  7687.  
  7688. local Mus1 = Instance.new("Sound",char)
  7689. Mus1.Name = "kaiokenaudio"
  7690. Mus1.SoundId = "rbxassetid://301184111"
  7691. Mus1.Pitch = 0.7
  7692. Mus1.Volume = 5
  7693. Mus1.Looped = false
  7694. Mus1:Play()
  7695.  
  7696. hum.WalkSpeed = 50
  7697. hum.JumpPower = 70
  7698.  
  7699. rock4 = false
  7700. rock = true
  7701. rock3 = true
  7702. wait(.1)
  7703. rock = false
  7704.  
  7705. local ssj2aura = Instance.new("ParticleEmitter",tor)
  7706. ssj2aura.Name = "kaiokenaura"
  7707. ssj2aura.Texture = "rbxassetid://241992237"
  7708. ssj2aura.Transparency = NumberSequence.new(0.25)
  7709. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,19,10))
  7710. ssj2aura.LightEmission = 1
  7711. ssj2aura.Size = NumberSequence.new(6)
  7712. ssj2aura.Lifetime = NumberRange.new(0.5)
  7713. ssj2aura.Rate = 15
  7714. ssj2aura.ZOffset = -1
  7715. ssj2aura.Speed = NumberRange.new(10)
  7716. ssj2aura.LockedToPart = true
  7717.  
  7718. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  7719. ssj2aura2.Name = "kaioaura"
  7720. ssj2aura2.Texture = "rbxassetid://1072507908"
  7721. ssj2aura2.Transparency = NumberSequence.new(0.059)
  7722. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,19,10))
  7723. ssj2aura2.LightEmission = 0.75
  7724. ssj2aura2.Size = NumberSequence.new(6)
  7725. ssj2aura2.Lifetime = NumberRange.new(0.5)
  7726. ssj2aura2.Rate = 20
  7727. ssj2aura2.ZOffset = -1
  7728. ssj2aura2.Speed = NumberRange.new(10)
  7729. ssj2aura2.LockedToPart = true
  7730.  
  7731. wait(1.9)
  7732.  
  7733. chatfunc("Here We Go!")
  7734.  
  7735. char.kaiokenaudio:Stop()
  7736. char.kaiokenaudio:Remove()
  7737.  
  7738. being = false
  7739.  
  7740. kaioken4 = true
  7741.  
  7742. end
  7743. end
  7744. end
  7745. end
  7746. end
  7747. end
  7748. end
  7749. end
  7750. end
  7751. end)
  7752. ---
  7753. end
  7754.  
  7755. function superkaio()
  7756.  
  7757. if ssj1 == true and ssj2 == false and assj2 == false and ssj3 == false then
  7758. if being == false then
  7759. if kaioken == false then
  7760. if kaioken2 == false then
  7761. if kaioken4 == false then
  7762. if kaioken5 == false then
  7763. if kaioken10 == false then
  7764. if kaioken20 == false then
  7765. being = true
  7766.  
  7767. rock4 = true
  7768.  
  7769. hum.WalkSpeed = 0
  7770. hum.JumpPower = 0
  7771.  
  7772. wait(.55)
  7773. rock = true
  7774. rock3 = true
  7775. wait(.25)
  7776. rock = false
  7777.  
  7778. chatfunc("Let's start by times three.")
  7779.  
  7780. wait(1.9)
  7781.  
  7782. chatfunc("Super... KAIOKEN!")
  7783.  
  7784. local Mus1 = Instance.new("Sound",char)
  7785. Mus1.Name = "kaiokenaudio"
  7786. Mus1.SoundId = "rbxassetid://301184111"
  7787. Mus1.Pitch = 0.7
  7788. Mus1.Volume = 5
  7789. Mus1.Looped = false
  7790. Mus1:Play()
  7791.  
  7792. hum.WalkSpeed = 69
  7793. hum.JumpPower = 85
  7794.  
  7795. rock4 = false
  7796. rock = true
  7797. rock3 = true
  7798. wait(.1)
  7799. rock = false
  7800.  
  7801. local ssj2aura = Instance.new("ParticleEmitter",tor)
  7802. ssj2aura.Name = "kaiokenaura"
  7803. ssj2aura.Texture = "rbxassetid://241992237"
  7804. ssj2aura.Transparency = NumberSequence.new(0.4)
  7805. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  7806. ssj2aura.LightEmission = 1
  7807. ssj2aura.Size = NumberSequence.new(6)
  7808. ssj2aura.Lifetime = NumberRange.new(0.5)
  7809. ssj2aura.Rate = 19
  7810. ssj2aura.ZOffset = -1.25
  7811. ssj2aura.Speed = NumberRange.new(10)
  7812. ssj2aura.LockedToPart = true
  7813.  
  7814. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  7815. ssj2aura2.Name = "kaioaura"
  7816. ssj2aura2.Texture = "rbxassetid://1072507908"
  7817. ssj2aura2.Transparency = NumberSequence.new(0.2)
  7818. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,9,9))
  7819. ssj2aura2.LightEmission = 0.75
  7820. ssj2aura2.Size = NumberSequence.new(6)
  7821. ssj2aura2.Lifetime = NumberRange.new(0.5)
  7822. ssj2aura2.Rate = 22
  7823. ssj2aura2.ZOffset = -2.5
  7824. ssj2aura2.Speed = NumberRange.new(10)
  7825. ssj2aura2.LockedToPart = true
  7826.  
  7827. wait(3.9)
  7828.  
  7829. chatfunc("Times Five!!")
  7830.  
  7831. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  7832. ssj2aura2.Name = "kaioaura"
  7833. ssj2aura2.Texture = "rbxassetid://1072507908"
  7834. ssj2aura2.Transparency = NumberSequence.new(0)
  7835. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(300,0,0))
  7836. ssj2aura2.LightEmission = 0.6
  7837. ssj2aura2.Size = NumberSequence.new(6)
  7838. ssj2aura2.Lifetime = NumberRange.new(0.5)
  7839. ssj2aura2.Rate = 22
  7840. ssj2aura2.ZOffset = -2.5
  7841. ssj2aura2.Speed = NumberRange.new(10)
  7842. ssj2aura2.LockedToPart = true
  7843.  
  7844. char.kaiokenaudio:Stop()
  7845. char.kaiokenaudio:Remove()
  7846.  
  7847. being = false
  7848. GroundShake = false
  7849.  
  7850. normal = false
  7851.  
  7852. kaioken = true
  7853. kaioken5 = true
  7854.  
  7855. wait(2.9)
  7856.  
  7857. chatfunc("Now its five.")
  7858.  
  7859. end
  7860. end
  7861. end
  7862. end
  7863. end
  7864. end
  7865. end
  7866. end
  7867.  
  7868. end
  7869.  
  7870. function ssbk()
  7871.  
  7872. if ssjb == true and ssjbk == false then
  7873. if being == false then
  7874. if kaioken == false then
  7875. if kaioken2 == false then
  7876. if kaioken4 == false then
  7877. if kaioken5 == false then
  7878. if kaioken10 == false then
  7879. if kaioken20 == false then
  7880. being = true
  7881.  
  7882. rock6 = true
  7883. rock5 = true
  7884. rock4 = true
  7885.  
  7886. hum.WalkSpeed = 0
  7887. hum.JumpPower = 0
  7888.  
  7889. auracan3 = false
  7890.  
  7891. tor.SSJBaura.Texture = "rbxassetid://1072541924"
  7892.  
  7893. local list2 = {NumberSequenceKeypoint.new(0,0.5,0),NumberSequenceKeypoint.new(1,0.8,0)}
  7894. tor.SSBaura2.Transparency = NumberSequence.new(list2)
  7895.  
  7896. wait(.55)
  7897. rock = true
  7898. rock3 = true
  7899. wait(.25)
  7900. rock = false
  7901.  
  7902. chatfunc("KAIOKEN, TIMES TEN!!!")
  7903.  
  7904. local Mus1 = Instance.new("Sound",char)
  7905. Mus1.Name = "kaiokenaudio"
  7906. Mus1.SoundId = "rbxassetid://301184111"
  7907. Mus1.Pitch = 0.7
  7908. Mus1.Volume = 5
  7909. Mus1.Looped = false
  7910. Mus1:Play()
  7911.  
  7912. hum.WalkSpeed = 115.999
  7913. hum.JumpPower = 115.999
  7914.  
  7915. rock4 = false
  7916. rock5 = false
  7917. rock6 = false
  7918. rock = true
  7919. rock3 = true
  7920. wait(.1)
  7921. rock = false
  7922.  
  7923. local ssj2aura = Instance.new("ParticleEmitter",tor)
  7924. ssj2aura.Name = "kaiokenaura"
  7925. ssj2aura.Texture = "rbxassetid://241992237"
  7926. ssj2aura.Transparency = NumberSequence.new(0.3)
  7927. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(0,255,255))
  7928. ssj2aura.LightEmission = 0.8
  7929. ssj2aura.Size = NumberSequence.new(3.55)
  7930. ssj2aura.Lifetime = NumberRange.new(0.5)
  7931. ssj2aura.Rate = 15
  7932. ssj2aura.ZOffset = -1
  7933. ssj2aura.Speed = NumberRange.new(10)
  7934. ssj2aura.LockedToPart = true
  7935.  
  7936. tor.SSJBaura.ZOffset = -1
  7937. tor.SSBaura2.ZOffset = -1
  7938.  
  7939. tor.SSJBaura.Rate = 14
  7940. tor.SSBaura2.Rate = 14
  7941.  
  7942. tor.SSJBaura.LightEmission = 0.8
  7943. tor.SSBaura2.LightEmission = 0.8
  7944.  
  7945. tor.SSJBaura.Size = NumberSequence.new(3.55)
  7946. tor.SSBaura2.Size = NumberSequence.new(3.55)
  7947.  
  7948. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  7949. ssj2aura2.Name = "kaioaura"
  7950. ssj2aura2.Texture = "rbxassetid://1072507908"
  7951. ssj2aura2.Transparency = NumberSequence.new(0.1)
  7952. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(255,0,0))
  7953. ssj2aura2.LightEmission = 0.75
  7954. ssj2aura2.Size = NumberSequence.new(6)
  7955. ssj2aura2.Lifetime = NumberRange.new(0.5)
  7956. ssj2aura2.Rate = 30.99
  7957. ssj2aura2.ZOffset = -3
  7958. ssj2aura2.Speed = NumberRange.new(11)
  7959. ssj2aura2.LockedToPart = true
  7960.  
  7961. wait(1.9)
  7962.  
  7963. char.kaiokenaudio:Stop()
  7964. char.kaiokenaudio:Remove()
  7965.  
  7966. being = false
  7967. GroundShake = false
  7968.  
  7969. normal = false
  7970.  
  7971. kaioken = true
  7972. kaioken10 = true
  7973. ssjbk = true
  7974.  
  7975. end
  7976. end
  7977. end
  7978. end
  7979. end
  7980. end
  7981. end
  7982. end
  7983.  
  7984. mouse.KeyDown:connect(function(key)
  7985.  
  7986. if key == "v" then
  7987.  
  7988. if normal == false then
  7989. if being == false then
  7990. if kaioken == true then
  7991. if kaioken2 == false then
  7992. if kaioken4 == false then
  7993. if kaioken5 == false then
  7994. if kaioken10 == true then
  7995. if kaioken20 == false then
  7996.  
  7997. GroundShake2 = true
  7998.  
  7999. GroundShake = false
  8000.  
  8001. being = true
  8002.  
  8003. rock4 = true
  8004.  
  8005. hum.WalkSpeed = 0
  8006. hum.JumpPower = 0
  8007.  
  8008. wait(.55)
  8009. rock = true
  8010. rock3 = true
  8011. wait(.25)
  8012.  
  8013. GroundShake2 = false
  8014. rock = false
  8015.  
  8016. chatfunc("TIMES TWENTY!!!!")
  8017.  
  8018. wait(1.59)
  8019.  
  8020. Mus1:Play()
  8021.  
  8022. Hair7.Color = Color3.fromRGB(200, 200, 255)
  8023.  
  8024. local larm1 = Instance.new("Part",char)
  8025. larm1.Name = "arm1"
  8026. larm1.Material = Enum.Material.Neon
  8027. larm1.Transparency = 0.75
  8028. larm1.Color = Color3.fromRGB(255,19,70)
  8029. larm1.Size = Vector3.new(1.1,2.1,1.1)
  8030. larm1.Position = Vector3.new(999,999,999)
  8031. local larmhold = Instance.new("Weld",char)
  8032. larmhold.Part0 = arm1
  8033. larmhold.Part1 = larm1
  8034. larmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  8035. local rarm1 = Instance.new("Part",char)
  8036. rarm1.Name = "arm2"
  8037. rarm1.Material = Enum.Material.Neon
  8038. rarm1.Transparency = 0.75
  8039. rarm1.Color = Color3.fromRGB(255,19,70)
  8040. rarm1.Size = Vector3.new(1.1,2.1,1.1)
  8041. rarm1.Position = Vector3.new(999,999,999)
  8042. local rarmhold = Instance.new("Weld",char)
  8043. rarmhold.Part0 = arm2
  8044. rarmhold.Part1 = rarm1
  8045. rarmhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  8046. local torso1 = Instance.new("Part",char)
  8047. torso1.Material = Enum.Material.Neon
  8048. torso1.Transparency = 0.75
  8049. torso1.Color = Color3.fromRGB(255,19,70)
  8050. torso1.Name = "tors"
  8051. torso1.Size = Vector3.new(2.1,2.1,1.1)
  8052. torso1.Position = Vector3.new(999,999,999)
  8053. local torsohold = Instance.new("Weld",char)
  8054. torsohold.Part0 = tor
  8055. torsohold.Part1 = torso1
  8056. torsohold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  8057. local lleg1 = Instance.new("Part",char)
  8058. lleg1.Name = "leg1"
  8059. lleg1.Material = Enum.Material.Neon
  8060. lleg1.Transparency = 0.75
  8061. lleg1.Color = Color3.fromRGB(255,19,70)
  8062. lleg1.Size = Vector3.new(1.1,2.1,1.1)
  8063. lleg1.Position = Vector3.new(999,999,999)
  8064. local lleghold = Instance.new("Weld",char)
  8065. lleghold.Part0 = leg1
  8066. lleghold.Part1 = lleg1
  8067. lleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  8068. local rleg1 = Instance.new("Part",char)
  8069. rleg1.Name = "leg2"
  8070. rleg1.Material = Enum.Material.Neon
  8071. rleg1.Transparency = 0.75
  8072. rleg1.Color = Color3.fromRGB(255,19,70)
  8073. rleg1.Size = Vector3.new(1.1,2.1,1.1)
  8074. rleg1.Position = Vector3.new(999,999,999)
  8075. local rleghold = Instance.new("Weld",char)
  8076. rleghold.Part0 = leg2
  8077. rleghold.Part1 = rleg1
  8078. rleghold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  8079. local rhed1 = Instance.new("Part",char)
  8080. rhed1.Name = "hed"
  8081. rhed1.Material = Enum.Material.Neon
  8082. rhed1.Transparency = 0.59
  8083. rhed1.Color = Color3.fromRGB(255,19,70)
  8084. rhed1.Size = Vector3.new(2.3,1.3,1.3)
  8085. rhed1.Position = Vector3.new(999,999,999)
  8086. local rhedhold = Instance.new("Weld",char)
  8087. rhedhold.Part0 = hed
  8088. rhedhold.Part1 = rhed1
  8089. rhedhold.C0 = CFrame.new(0,0,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0))
  8090. local rhedmesh1 = Instance.new("SpecialMesh",rhed1)
  8091. rhedmesh1.MeshId = "rbxassetid://539723444"
  8092. rhedmesh1.TextureId = "rbxassetid://43200547"
  8093. rhedmesh1.Scale = Vector3.new(1,1,1)
  8094.  
  8095.  
  8096. --local cce = Instance.new("ColorCorrectionEffect",game.Lighting)
  8097.  
  8098. local num = 0
  8099. local a21e = Instance.new("Part",char)
  8100. a21e.Name = "Beam"..num
  8101. a21e.Locked = true
  8102. a21e.Size = Vector3.new(1,1,1)
  8103. a21e.CanCollide = false
  8104. a21e.Position = Vector3.new(999,999,999)
  8105. a21e.BrickColor = BrickColor.new("Bright red")
  8106. a21e.Material = "Neon"
  8107. a21e.Transparency = 0
  8108. local aa21e = Instance.new("SpecialMesh",a21e)
  8109. a21e.Anchored = true
  8110. a21e.Position = hrp.Position
  8111. aa21e.MeshType = "Sphere"
  8112. aa21e.Scale = Vector3.new(1,1,1)
  8113.  
  8114. --cce.Name = "KaiokenRed"
  8115.  
  8116. local be = Instance.new("BlurEffect",game.Lighting)
  8117.  
  8118. be.Name = "KaiokenBlur"
  8119.  
  8120. be.Size = 24
  8121.  
  8122. --cce.TintColor = Color3.fromRGB(255,19,70)
  8123.  
  8124. --cce.Brightness = 0.29
  8125.  
  8126. --cce.Contrast = 2
  8127.  
  8128. --cce.Saturation = -1
  8129.  
  8130. rock4 = false
  8131. rock = true
  8132. rock3 = true
  8133. wait(.1)
  8134. rock = false
  8135.  
  8136. tor.kaioaura.Enabled = false
  8137. wait(.1)
  8138. tor.kaioaura:Remove()
  8139.  
  8140. tor.kaiokenaura.Size = NumberSequence.new(4)
  8141. tor.kaiokenaura.Color = ColorSequence.new(Color3.fromRGB(300,0,0),Color3.fromRGB(325,0,0))
  8142. tor.kaiokenaura.ZOffset = -3
  8143.  
  8144. tor.SSJBaura.Transparency = NumberSequence.new(0.8)
  8145. tor.SSBaura2.Transparency = NumberSequence.new(0.9)
  8146.  
  8147. tor.SSJBaura.ZOffset = -1
  8148. tor.SSBaura2.ZOffset = -1
  8149.  
  8150. tor.SSJBaura.Rate = 15
  8151. tor.SSBaura2.Rate = 15
  8152.  
  8153. tor.SSJBaura.LightEmission = 0.75
  8154. tor.SSBaura2.LightEmission = 0.75
  8155.  
  8156. tor.SSJBaura.Size = NumberSequence.new(2.9)
  8157. tor.SSJBaura.Color = ColorSequence.new(Color3.fromRGB(300,300,429),Color3.fromRGB(350,350,595))
  8158. tor.SSBaura2.Size = NumberSequence.new(2.9)
  8159. tor.SSBaura2.Color = ColorSequence.new(Color3.fromRGB(300,300,429),Color3.fromRGB(350,350,595))
  8160.  
  8161. local ssj2aura = Instance.new("ParticleEmitter",tor)
  8162. ssj2aura.Name = "kaiokenaura2"
  8163. ssj2aura.Texture = "rbxassetid://1072507908"
  8164. ssj2aura.Transparency = NumberSequence.new(0.75)
  8165. ssj2aura.Color = ColorSequence.new(Color3.fromRGB(350,0,0))
  8166. ssj2aura.LightEmission = 1.55
  8167. ssj2aura.Size = NumberSequence.new(8)
  8168. ssj2aura.Lifetime = NumberRange.new(0.5)
  8169. ssj2aura.Rate = 15
  8170. ssj2aura.ZOffset = -4
  8171. ssj2aura.Speed = NumberRange.new(10)
  8172. ssj2aura.LockedToPart = true
  8173.  
  8174. local ssj2aura2 = Instance.new("ParticleEmitter",tor)
  8175. ssj2aura2.Name = "kaioaura"
  8176. ssj2aura2.Texture = "rbxassetid://1072507908"
  8177. ssj2aura2.Transparency = NumberSequence.new(0.89)
  8178. ssj2aura2.Color = ColorSequence.new(Color3.fromRGB(350,0,0))
  8179. ssj2aura2.LightEmission = 0.79
  8180. ssj2aura2.Size = NumberSequence.new(9)
  8181. ssj2aura2.Lifetime = NumberRange.new(0.5)
  8182. ssj2aura2.Rate = 20
  8183. ssj2aura2.ZOffset = -4
  8184. ssj2aura2.Speed = NumberRange.new(10)
  8185. ssj2aura2.LockedToPart = true
  8186.  
  8187. for i = 1,69 do
  8188. wait()
  8189. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  8190. a21e.Transparency = a21e.Transparency + 0.02
  8191. end
  8192.  
  8193. Mesh.MeshId = "rbxassetid://430344159"
  8194.  
  8195. Weld1.C0 = CFrame.new(-.25,1.2,.34)
  8196.  
  8197. wait(.1)
  8198.  
  8199. a21e:Remove()
  8200.  
  8201. local num = 0
  8202. local a21e = Instance.new("Part",char)
  8203. a21e.Name = "Beam"..num
  8204. a21e.Locked = true
  8205. a21e.Size = Vector3.new(1,1,1)
  8206. a21e.CanCollide = false
  8207. a21e.Position = Vector3.new(999,999,999)
  8208. a21e.BrickColor = BrickColor.new("Bright red")
  8209. a21e.Material = "Neon"
  8210. a21e.Transparency = 0
  8211. local aa21e = Instance.new("SpecialMesh",a21e)
  8212. a21e.Anchored = true
  8213. a21e.Position = hrp.Position
  8214. aa21e.MeshType = "Sphere"
  8215. aa21e.Scale = Vector3.new(1,1,1)
  8216.  
  8217. wait(0.729)
  8218.  
  8219. local Mus1 = Instance.new("Sound",char)
  8220. Mus1.Name = "kaiokenaudio"
  8221. Mus1.SoundId = "rbxassetid://301184111"
  8222. Mus1.Pitch = 0.7
  8223. Mus1.Volume = 5
  8224. Mus1.Looped = false
  8225. Mus1:Play()
  8226.  
  8227. for i = 1,69 do
  8228. wait()
  8229. be.Size = be.Size - 1
  8230. aa21e.Scale = aa21e.Scale + Vector3.new(5,5,5)
  8231. a21e.Transparency = a21e.Transparency + 0.02
  8232. end
  8233.  
  8234. wait(0.925)
  8235.  
  8236. a21e:Remove()
  8237.  
  8238. wait(0.9)
  8239.  
  8240. local num = 0
  8241. local a21e = Instance.new("Part",char)
  8242. a21e.Name = "Beam"..num
  8243. a21e.Locked = true
  8244. a21e.Size = Vector3.new(1,1,1)
  8245. a21e.CanCollide = false
  8246. a21e.Position = Vector3.new(999,999,999)
  8247. a21e.BrickColor = BrickColor.new("Bright bluish green")
  8248. a21e.Material = "Neon"
  8249. a21e.Transparency = 0
  8250. local aa21e = Instance.new("SpecialMesh",a21e)
  8251. a21e.Anchored = true
  8252. a21e.Position = hrp.Position
  8253. aa21e.MeshType = "Sphere"
  8254. aa21e.Scale = Vector3.new(1,1,1)
  8255.  
  8256. GroundShake = false
  8257.  
  8258. wait(0.859)
  8259.  
  8260. Hair7.Color = Color3.fromRGB(0,225,245)
  8261.  
  8262. --cce.Enabled = false
  8263.  
  8264. be.Enabled = false
  8265.  
  8266. for i = 1,70 do
  8267. wait()
  8268. be.Size = be.Size - 1
  8269. aa21e.Scale = aa21e.Scale + Vector3.new(6,6,6)
  8270. a21e.Transparency = a21e.Transparency + 0.02
  8271. end
  8272.  
  8273. be:Remove()
  8274.  
  8275. --cce:Remove()
  8276.  
  8277. chatfunc("LET'S START IT AGAIN!!!!!")
  8278.  
  8279. a21e:Remove()
  8280.  
  8281. hum.WalkSpeed = 150.999
  8282. hum.JumpPower = 129.999
  8283.  
  8284. char.kaiokenaudio:Stop()
  8285. char.kaiokenaudio:Remove()
  8286.  
  8287. being = false
  8288.  
  8289. kaioken20 = true
  8290.  
  8291. end
  8292. end
  8293. end
  8294. end
  8295. end
  8296. end
  8297. end
  8298. end
  8299. end
  8300. end)
  8301. ---
  8302.  
  8303. end
  8304.  
  8305. GroundWave9 = function()
  8306. local HandCF = CFrame.new(hrp.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  8307. Colors = {"Bright red", "Bright red"}
  8308. local wave = Instance.new("Part", tor)
  8309. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  8310. wave.Anchored = true
  8311. wave.CanCollide = false
  8312. wave.Locked = true
  8313. wave.Size = Vector3.new(1, 1, 1)
  8314. wave.TopSurface = "Smooth"
  8315. wave.BottomSurface = "Smooth"
  8316. wave.Transparency = 0.35
  8317. wave.CFrame = HandCF
  8318. wm = Instance.new("SpecialMesh", wave)
  8319. wm.MeshId = "rbxassetid://3270017"
  8320. coroutine.wrap(function()
  8321. for i = 1, 30, 1 do
  8322. wm.Scale = Vector3.new(3 + i*3.2, 3 + i*3.2, 3)
  8323. wave.Size = wm.Scale
  8324. wave.CFrame = HandCF
  8325. wave.Transparency = i/30
  8326. wait()
  8327. end
  8328. wait()
  8329. wave:Destroy()
  8330. end)()
  8331. end
  8332.  
  8333. GroundWaveR = function()
  8334. local HandCF = CFrame.new(hrp.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  8335. Colors = {"Pink", "Pink"}
  8336. local wave = Instance.new("Part", tor)
  8337. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  8338. wave.Anchored = true
  8339. wave.CanCollide = false
  8340. wave.Locked = true
  8341. wave.Size = Vector3.new(1, 1, 1)
  8342. wave.TopSurface = "Smooth"
  8343. wave.BottomSurface = "Smooth"
  8344. wave.Transparency = 0.35
  8345. wave.CFrame = HandCF
  8346. wm = Instance.new("SpecialMesh", wave)
  8347. wm.MeshId = "rbxassetid://3270017"
  8348. coroutine.wrap(function()
  8349. for i = 1, 30, 1 do
  8350. wm.Scale = Vector3.new(3 + i*3.2, 3 + i*3.2, 3)
  8351. wave.Size = wm.Scale
  8352. wave.CFrame = HandCF
  8353. wave.Transparency = i/30
  8354. wait()
  8355. end
  8356. wait()
  8357. wave:Destroy()
  8358. end)()
  8359. end
  8360.  
  8361. GroundWave1 = function()
  8362. local HandCF = CFrame.new(hrp.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  8363. Colors = {"Medium blue", "Medium blue"}
  8364. local wave = Instance.new("Part", tor)
  8365. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  8366. wave.Anchored = true
  8367. wave.CanCollide = false
  8368. wave.Locked = true
  8369. wave.Size = Vector3.new(1, 1, 1)
  8370. wave.TopSurface = "Smooth"
  8371. wave.BottomSurface = "Smooth"
  8372. wave.Transparency = 0.35
  8373. wave.CFrame = HandCF
  8374. wm = Instance.new("SpecialMesh", wave)
  8375. wm.MeshId = "rbxassetid://3270017"
  8376. coroutine.wrap(function()
  8377. for i = 1, 30, 1 do
  8378. wm.Scale = Vector3.new(3 + i*3.2, 3 + i*3.2, 3)
  8379. wave.Size = wm.Scale
  8380. wave.CFrame = HandCF
  8381. wave.Transparency = i/30
  8382. wait()
  8383. end
  8384. wait()
  8385. wave:Destroy()
  8386. end)()
  8387. end
  8388.  
  8389. GroundWave0 = function()
  8390.  
  8391. local HandCF = CFrame.new(hrp.Position - Vector3.new(0,3,0)) * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  8392. Colors = {"White", "White"}
  8393. local wave = Instance.new("Part", hrp)
  8394. wave.BrickColor = BrickColor.new(Colors[math.random(1,#Colors)])
  8395. wave.Anchored = true
  8396. wave.CanCollide = false
  8397. wave.Locked = true
  8398. wave.Size = Vector3.new(1, 1, 1)
  8399. wave.TopSurface = "Smooth"
  8400. wave.BottomSurface = "Smooth"
  8401. wave.Transparency = 0.35
  8402. wave.CFrame = HandCF
  8403. wm = Instance.new("SpecialMesh", wave)
  8404. wm.MeshId = "rbxassetid://3270017"
  8405. coroutine.wrap(function()
  8406. for i = 1, 30, 1 do
  8407. wm.Scale = Vector3.new(8 + i*8.2, 3 + i*8.2, 8)
  8408. wave.Size = wm.Scale
  8409. wave.CFrame = HandCF
  8410. wave.Transparency = i/30
  8411. wait()
  8412. end
  8413. wait()
  8414. wave:Destroy()
  8415. end)()
  8416. end
  8417.  
  8418. mouse.KeyDown:connect(function(key)
  8419. if key == "q" then
  8420. if normal == true and limitbreaker == false and ssj1 == false and being == false and ssjg == false and ssjb == false and kaioken == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false then
  8421. ssj()
  8422. end
  8423. end
  8424. end)
  8425.  
  8426. mouse.KeyDown:connect(function(key)
  8427. if key == "q" then
  8428. if normal == true and limitbreaker == false and fullpowerssj == false and being == false and ssjg == false and ssjb == false and kaioken == false and ssj2 == false and assj2 == false and ssj3 == false and ssjwhite == false and ultrainstinct == false and ssjbfullpower == false then
  8429. angry()
  8430. end
  8431. end
  8432. end)
  8433.  
  8434. mouse.KeyDown:connect(function(key)
  8435. if key == "r" then
  8436. if normal == true and fullpowerssj == false and ssjg == false and being == false and ssj1 == false and ssj2 == false and ssj3 == false and assj2 == false and ssjwhite == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and limitbreaker == false or ssjb == true then
  8437. ssg()
  8438. end
  8439. end
  8440. end)
  8441.  
  8442. mouse.KeyDown:connect(function(key)
  8443. if key == "f" then
  8444. if normal == true and fullpowerssj == false and being == false and ssj1 == false and ssj2 == false and ssj3 == false and assj2 == false and ssjwhite == false and ssjb == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and kaioken == false and limitbreaker == false or ssjg == true or ssj4 == true then
  8445. ssb()
  8446. end
  8447. if normal == false and fullpowerssj == false and being == false and ssj1 == false and ssj2 == false and ssj3 == false and assj2 == false and ssjwhite == false and ssjb == false and kaioken == false and ultrainstinct == false and kaioken == false or ssjg == true and limitbreaker == false or ssjbfullpower == true then
  8448. normalform()
  8449. chatfunc("Back to normal.")
  8450. wait(0.9)
  8451. ssb()
  8452. end
  8453. end
  8454. end)
  8455.  
  8456. mouse.KeyDown:connect(function(key)
  8457. if key == "g" then
  8458. if normal == false and fullpowerssj == false and ssjg == false and being == false and ssj1 == false and ssj2 == false and ssj3 == false and assj2 == false and ssjwhite == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and kaioken == false and limitbreaker == false or ssjb == true then
  8459. normalform()
  8460. chatfunc("Bring it on!")
  8461. wait(0.9)
  8462. ssb2()
  8463. end
  8464. if normal == true and fullpowerssj == false and ssjg == false and being == false and ssj1 == false and ssj2 == false and ssj3 == false and assj2 == false and ssjwhite == false and kaioken == false and ultrainstinct == false and ssjbfullpower == false and kaioken == false and ssjb == false and limitbreaker == false then
  8465. ssb2()
  8466. end
  8467. end
  8468. end)
  8469.  
  8470. mouse.KeyDown:connect(function(key)
  8471. if key == "c" then
  8472. if ssj1 == true or ssj2 == true or ssj3 == true or sss3 == true or ssjg == true or ssjb == true or kaioken == true or ssjwhite == true and being == false or normal == false or ultrainstinct == true or ssjbfullpower == true or limitbreaker == false then
  8473. rock3 = true
  8474. rock = false
  8475. normalform()
  8476. end
  8477. end
  8478. end)
  8479.  
  8480. local kiblastdone = true
  8481. local kiblast1 = false
  8482. local kiblast2 = false
  8483. local kiblast3 = false
  8484. local kiblast4 = false
  8485.  
  8486. local kigo = 15
  8487.  
  8488. canattack = true
  8489. canjump = true
  8490. idle = true
  8491. walk = true
  8492.  
  8493. kamehit = Instance.new("Sound",char)
  8494. kamehit.Volume = 39
  8495. kamehit.Name = "kamehit"
  8496. kamehit.Looped = false
  8497. kamehit.SoundId = "rbxassetid://908484148"
  8498.  
  8499. kamehit2 = Instance.new("Sound",char)
  8500. kamehit2.Volume = 39
  8501. kamehit2.Name = "kamehit"
  8502. kamehit2.Looped = false
  8503. kamehit2.SoundId = "rbxassetid://1187771640"
  8504.  
  8505. kiblastsound = Instance.new("Sound",char)
  8506. kiblastsound.Volume = 20000
  8507. kiblastsound.Name = "kiblastsound"
  8508. kiblastsound.Looped = false
  8509. kiblastsound.SoundId = "http://www.roblox.com/asset/?id=586187912"
  8510.  
  8511. screaming = Instance.new("Sound",char)
  8512. screaming.Volume = 10
  8513. screaming.Name = "screaming"
  8514. screaming.Looped = false
  8515. screaming.SoundId = "rbxassetid://527276541"
  8516.  
  8517. screaming1 = Instance.new("Sound",char)
  8518. screaming1.Volume = 10
  8519. screaming1.Name = "screaming1"
  8520. screaming1.Looped = false
  8521. screaming1.SoundId = "rbxassetid://527276541"
  8522.  
  8523. mouse.KeyDown:connect(function(key)
  8524. if key == "t" then
  8525. if canattack == true and kiblastdone == false then
  8526. if attacking == false then
  8527. local c = char
  8528.  
  8529. local omg = c.Torso["Right Shoulder"].C0
  8530.  
  8531. idle = false
  8532. walk = false
  8533. kiblastdone = true
  8534. canattack = false
  8535. attacking = true
  8536. canjump = false
  8537. kiblast1 = true
  8538. wait(0.2)
  8539. kiblast1 = false
  8540. kiblast2 = true
  8541. kiblastsound:Play()
  8542. ay = Instance.new("Part",char)
  8543.  
  8544. c.Torso["Right Shoulder"].C0 = c.Torso["Right Shoulder"].C0 * CFrame.new(0,0,0) * CFrame.Angles(0,0,math.rad(90))
  8545.  
  8546. ay.Name = "NewPart"
  8547. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8548. ay.Size = Vector3.new(1,1,1)
  8549. end
  8550. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true then
  8551. ay.Size = Vector3.new(1.9,1.9,1.9)
  8552. end
  8553. if limitbreaker == true or ultrainstinct == true then
  8554. ay.Size = Vector3.new(1.95,1.95,1.95)
  8555. end
  8556. ay.CanCollide = false
  8557. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8558. ay.BrickColor = BrickColor.new("Medium blue")
  8559. end
  8560. if kaioken == true and ssj1 == false then
  8561. ay.BrickColor = BrickColor.new("Persimmon")
  8562. end
  8563. if ultrainstinct == true then
  8564. ay.BrickColor = BrickColor.new("Steel blue")
  8565. end
  8566. if limitbreaker == true then
  8567. ay.Color = Color3.fromRGB(255,19,70)
  8568. end
  8569. if ssj1 == true or ssj2 == true or assj2 == true then
  8570. local particle = Instance.new("ParticleEmitter",ay)
  8571. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  8572. particle.LightEmission = 0.5
  8573. particle.LightInfluence = 0
  8574. particle.Transparency = NumberSequence.new(0)
  8575. particle.Acceleration = Vector3.new(0,0.04,0)
  8576. particle.Size = NumberSequence.new(2.9)
  8577. particle.Texture = "rbxassetid://1045690145"
  8578. particle.ZOffset = -1
  8579. particle.LockedToPart = false
  8580. particle.Enabled = true
  8581. particle.Lifetime = NumberRange.new(0.2)
  8582. particle.Rate = 20
  8583. particle.Rotation = NumberRange.new(-360,360)
  8584. particle.Speed = NumberRange.new(1.9)
  8585. particle.SpreadAngle = Vector2.new(9999,9999)
  8586. particle.Color = ColorSequence.new(Color3.fromRGB(255,229,100))
  8587. particle.EmissionDirection = Enum.NormalId.Back
  8588. particle.Name = "electricity"
  8589. if ssj3 == true or assj3 == true or fullpowerssj == true then
  8590. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  8591. particle.LightEmission = 1
  8592. end
  8593. ay.BrickColor = BrickColor.new("Daisy orange")
  8594. end
  8595. if ssj3 == true or assj3 == true or fullpowerssj == true then
  8596. ay.BrickColor = BrickColor.new("Cool yellow")
  8597. local particle = Instance.new("ParticleEmitter",ay)
  8598. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  8599. particle.LightEmission = 1
  8600. particle.LightInfluence = 0
  8601. particle.Transparency = NumberSequence.new(0)
  8602. particle.Acceleration = Vector3.new(0,0.04,0)
  8603. particle.Size = NumberSequence.new(2.9)
  8604. particle.Texture = "rbxassetid://1045690145"
  8605. particle.ZOffset = -1
  8606. particle.LockedToPart = false
  8607. particle.Enabled = true
  8608. particle.Lifetime = NumberRange.new(0.09)
  8609. particle.Rate = 15
  8610. particle.Rotation = NumberRange.new(-360,360)
  8611. particle.Speed = NumberRange.new(1.7)
  8612. particle.SpreadAngle = Vector2.new(999,999)
  8613. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  8614. particle.EmissionDirection = Enum.NormalId.Back
  8615. particle.Name = "electricity"
  8616. end
  8617. ay.Material = "Neon"
  8618. ay.Transparency = 0
  8619. aay = Instance.new("SpecialMesh",ay)
  8620. aay.MeshType = "Sphere"
  8621. aay.Scale = Vector3.new(1.09,1.09,1.09)
  8622. ay.Position = Vector3.new(999,999,999)
  8623. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8624. ay.CFrame = hrp.CFrame + hrp.CFrame.lookVector * 3
  8625. end
  8626. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true then
  8627. ay.CFrame = hrp.CFrame + hrp.CFrame.lookVector * 9
  8628. end
  8629. ys = Instance.new("BodyVelocity",ay)
  8630.  
  8631. ys.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  8632.  
  8633. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8634. ys.Velocity = hrp.CFrame.lookVector * 75
  8635. end
  8636. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true or fullpowerssj == true then
  8637. ys.Velocity = hrp.CFrame.lookVector * 199
  8638. end
  8639. if ultrainstinct == true then
  8640. ys.Velocity = hrp.CFrame.lookVector * 799
  8641. end
  8642. if limitbreaker == true then
  8643. ys.Velocity = hrp.CFrame.lookVector * 999
  8644. end
  8645. if ssjg == true or ssjb == true or ssjbfullpower == true then
  8646. ys.Velocity = hrp.CFrame.lookVector * 259
  8647. end
  8648. ay.Touched:connect(function(hit)
  8649. if hit then
  8650.  
  8651. if hit.Parent.Name ~= c.Name then
  8652.  
  8653.  
  8654.  
  8655.  
  8656. kamehit:Play()
  8657. for i = 1,10 do
  8658. wait()
  8659. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false or ultrainstinct == false then
  8660. aay.Scale = aay.Scale + Vector3.new(1.09,1.09,1.09)
  8661. ay.Transparency = ay.Transparency + 0.1
  8662. end
  8663. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true or ultrainstinct == true then
  8664. aay.Scale = aay.Scale + Vector3.new(1.19,1.19,1.19)
  8665. ay.Transparency = ay.Transparency + 0.09
  8666. end
  8667. end
  8668. ay:Destroy()
  8669.  
  8670. end
  8671. if hit.Parent:FindFirstChild("Head") ~= nil or hit.Parent.Parent:FindFirstChild("Head") ~= nil then
  8672. for i,v in pairs(hit.Parent:GetChildren()) do
  8673. if hit.Parent.Name ~= c.Name then
  8674.  
  8675. if v:IsA("Humanoid") and v.Parent.Name ~= c.Name then
  8676. v.Health = v.Health - 100
  8677. if v.Health > 100 then
  8678. v.Health = 100
  8679. v.MaxHealth = 100
  8680. v.Health = v.Health - 100
  8681. end
  8682. end
  8683. end
  8684. end
  8685. end
  8686. end
  8687. end)
  8688.  
  8689. game.Debris:AddItem(ay,3)
  8690. wait(0.2)
  8691. c.Torso["Right Shoulder"].C0 = omg
  8692. kiblast2= false
  8693. idle = true
  8694. walk = true
  8695. canjump = true
  8696. canattack = true
  8697. attacking = false
  8698.  
  8699. end
  8700. end
  8701. end
  8702. end)
  8703.  
  8704. mouse.KeyDown:connect(function(key)
  8705. if key == "t" then
  8706. if canattack == true and kiblastdone == true then
  8707. if attacking == false then
  8708. local c = char
  8709. local omg = c.Torso["Left Shoulder"].C0
  8710.  
  8711. idle = false
  8712. walk = false
  8713. kiblastdone = false
  8714. canattack = false
  8715. canjump = false
  8716. attacking = true
  8717. kiblast3 = true
  8718. wait(0.2)
  8719. kiblast3 = false
  8720. kiblast4 = true
  8721. kiblastsound:Play()
  8722. ay = Instance.new("Part",char)
  8723.  
  8724. c.Torso["Left Shoulder"].C0 = c.Torso["Left Shoulder"].C0 * CFrame.new(-0,0,0) * CFrame.Angles(0,0,math.rad(-90))
  8725.  
  8726. ay.Name = "NewPart"
  8727. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8728. ay.Size = Vector3.new(1,1,1)
  8729. end
  8730. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true then
  8731. ay.Size = Vector3.new(1.9,1.9,1.9)
  8732. end
  8733. if limitbreaker == true or ultrainstinct == true then
  8734. ay.Size = Vector3.new(1.95,1.95,1.95)
  8735. end
  8736. ay.CanCollide = false
  8737. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8738. ay.BrickColor = BrickColor.new("Medium blue")
  8739. end
  8740. if ultrainstinct == true then
  8741. ay.BrickColor = BrickColor.new("Steel blue")
  8742. end
  8743. if limitbreaker == true then
  8744. ay.Color = Color3.fromRGB(255,19,70)
  8745. end
  8746. if kaioken == true and ssj1 == false then
  8747. ay.BrickColor = BrickColor.new("Persimmon")
  8748. end
  8749. if ssj1 == true or ssj2 == true or assj2 == true then
  8750. local particle = Instance.new("ParticleEmitter",ay)
  8751. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,0))
  8752. particle.LightEmission = 0.5
  8753. particle.LightInfluence = 0
  8754. particle.Transparency = NumberSequence.new(0)
  8755. particle.Acceleration = Vector3.new(0,0.04,0)
  8756. particle.Size = NumberSequence.new(2.9)
  8757. particle.Texture = "rbxassetid://1045690145"
  8758. particle.ZOffset = -1
  8759. particle.LockedToPart = false
  8760. particle.Enabled = true
  8761. particle.Lifetime = NumberRange.new(0.2)
  8762. particle.Rate = 20
  8763. particle.Rotation = NumberRange.new(-360,360)
  8764. particle.Speed = NumberRange.new(1.9)
  8765. particle.SpreadAngle = Vector2.new(9999,9999)
  8766. particle.Color = ColorSequence.new(Color3.fromRGB(255,229,100))
  8767. particle.EmissionDirection = Enum.NormalId.Back
  8768. particle.Name = "electricity"
  8769. if ssj3 == true or assj3 == true or fullpowerssj == true then
  8770. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  8771. particle.LightEmission = 1
  8772. end
  8773. ay.BrickColor = BrickColor.new("Daisy orange")
  8774. end
  8775. if ssj3 == true or assj3 == true or fullpowerssj == true then
  8776. ay.BrickColor = BrickColor.new("Cool yellow")
  8777. local particle = Instance.new("ParticleEmitter",ay)
  8778. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  8779. particle.LightEmission = 1
  8780. particle.LightInfluence = 0
  8781. particle.Transparency = NumberSequence.new(0)
  8782. particle.Acceleration = Vector3.new(0,0.04,0)
  8783. particle.Size = NumberSequence.new(2.9)
  8784. particle.Texture = "rbxassetid://1045690145"
  8785. particle.ZOffset = -1
  8786. particle.LockedToPart = false
  8787. particle.Enabled = true
  8788. particle.Lifetime = NumberRange.new(0.09)
  8789. particle.Rate = 15
  8790. particle.Rotation = NumberRange.new(-360,360)
  8791. particle.Speed = NumberRange.new(1.7)
  8792. particle.SpreadAngle = Vector2.new(999,999)
  8793. particle.Color = ColorSequence.new(Color3.fromRGB(255,255,255))
  8794. particle.EmissionDirection = Enum.NormalId.Back
  8795. particle.Name = "electricity"
  8796. end
  8797. ay.Material = "Neon"
  8798. ay.Transparency = 0
  8799. aay = Instance.new("SpecialMesh",ay)
  8800. aay.MeshType = "Sphere"
  8801. aay.Scale = Vector3.new(1.09,1.09,1.09)
  8802. ay.Position = Vector3.new(999,999,999)
  8803. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8804. ay.CFrame = hrp.CFrame + hrp.CFrame.lookVector * 3
  8805. end
  8806. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true then
  8807. ay.CFrame = hrp.CFrame + hrp.CFrame.lookVector * 9
  8808. end
  8809. ys = Instance.new("BodyVelocity",ay)
  8810.  
  8811. ys.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  8812.  
  8813. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false then
  8814. ys.Velocity = hrp.CFrame.lookVector * 75
  8815. end
  8816. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true or fullpowerssj == true then
  8817. ys.Velocity = hrp.CFrame.lookVector * 199
  8818. end
  8819. if ultrainstinct == true then
  8820. ys.Velocity = hrp.CFrame.lookVector * 799
  8821. end
  8822. if limitbreaker == true then
  8823. ys.Velocity = hrp.CFrame.lookVector * 999
  8824. end
  8825. if ssjg == true or ssjb == true or ssjbfullpower == true then
  8826. ys.Velocity = hrp.CFrame.lookVector * 259
  8827. end
  8828. ay.Touched:connect(function(hit)
  8829. if hit then
  8830.  
  8831.  
  8832. if hit.Parent.Name ~= c.Name then
  8833.  
  8834.  
  8835.  
  8836. kamehit:Play()
  8837. for i = 1,10 do
  8838. wait()
  8839. if ssj1 == false or ssj2 == false or ssj3 == false or assj2 == false or assj3 == false or ultrainstinct == false then
  8840. aay.Scale = aay.Scale + Vector3.new(1.09,1.09,1.09)
  8841. ay.Transparency = ay.Transparency + 0.1
  8842. end
  8843. if ssj1 == true or ssj2 == true or ssj3 == true or assj2 == true or assj3 == true or ultrainstinct == true then
  8844. aay.Scale = aay.Scale + Vector3.new(1.19,1.19,1.19)
  8845. ay.Transparency = ay.Transparency + 0.09
  8846. end
  8847. end
  8848. ay:Destroy()
  8849.  
  8850. end
  8851. if hit.Parent:FindFirstChild("Head") ~= nil or hit.Parent.Parent:FindFirstChild("Head") ~= nil then
  8852. for i,v in pairs(hit.Parent:GetChildren()) do
  8853. if hit.Parent.Name ~= c.Name then
  8854.  
  8855. if v:IsA("Humanoid") and v.Parent.Name ~= c.Name then
  8856. v.Health = v.Health - 100
  8857. if v.Health > 100 then
  8858. v.Health = 100
  8859. v.MaxHealth = 100
  8860. v.Health = v.Health - 100
  8861. end
  8862. end
  8863. end
  8864. end
  8865. end
  8866. end
  8867. end)
  8868.  
  8869. game.Debris:AddItem(ay,3)
  8870. wait(0.2)
  8871. c.Torso["Left Shoulder"].C0 = omg
  8872. kiblast4= false
  8873. idle = true
  8874. walk = true
  8875. canjump = true
  8876. canattack = true
  8877. attacking = false
  8878.  
  8879. end
  8880. end
  8881. end
  8882. end)
  8883.  
  8884. mouse.KeyDown:connect(function(key)
  8885. if key == "v" then
  8886. if normal == true or ssj1 == false or ssjb == false or kaioken == false or ssjwhite == false and being == false or ultrainstinct == false then
  8887.  
  8888. rock = true
  8889.  
  8890. wait(.25)
  8891.  
  8892. rock3 = true
  8893. rock = false
  8894.  
  8895. kaio()
  8896.  
  8897. if ssj1 == true and ssj2 == false and assj2 == false and ssj3 == false and kaioken == false and kaioken2 == false and kaioken4 == false and being == false then
  8898.  
  8899. superkaio()
  8900.  
  8901. end
  8902.  
  8903. if ssjb == true and kaioken == false and kaioken2 == false and kaioken4 == false and being == false and ssjbk == false then
  8904.  
  8905. ssbk()
  8906.  
  8907. end
  8908.  
  8909. end
  8910. end
  8911. end)
  8912.  
  8913. local ff = Instance.new("ForceField",game.Workspace)
  8914. ff.Parent = char
  8915. ff.Visible = false
  8916. ff.Name = "Goku"
  8917.  
  8918. local effect = Instance.new("Sound",hed)
  8919. effect.Volume = 5
  8920. effect.Pitch = 1
  8921. effect.SoundId = 'rbxassetid://153613030'
  8922.  
  8923. teleport = function(cx,cy,cz)
  8924. local Debounce = true
  8925. tor.Anchored = true
  8926.  
  8927. tor.Anchored = false
  8928. tor.CFrame = CFrame.new(cx,cy,cz) * CFrame.new(0,3,0)
  8929. tor.Anchored = true
  8930. tor.Anchored = false
  8931. Debounce = false
  8932. end;
  8933.  
  8934. function leport()
  8935. teleport(mouse.Hit.X,mouse.Hit.Y,mouse.Hit.Z)
  8936. end
  8937.  
  8938. d = {}
  8939.  
  8940. function iteffect()
  8941.  
  8942. coroutine.resume(coroutine.create(function()
  8943.  
  8944. for i = 1, 10 do
  8945. local effect = Instance.new("Part", workspace)
  8946. effect.Anchored = true
  8947. effect.CanCollide = false
  8948. effect.Size = Vector3.new(0.2, 3, 0.2)
  8949. effect.CFrame = hrp.CFrame * CFrame.new(math.random(-3, 3), math.random(-3, 3), math.random(-3, 3))
  8950. effect.Transparency = 0
  8951. effect.Material = "Plastic"
  8952. effect.BrickColor = BrickColor.new("Really black")
  8953. table.insert(d, effect)
  8954. game:GetService("Debris"):AddItem(effect, 0.3)
  8955. end
  8956.  
  8957. coroutine.resume(coroutine.create(function()
  8958. for i = 1, 10 do
  8959. for i,e in pairs(d) do
  8960. e.CFrame = e.CFrame * CFrame.new(0, math.random(0, 10)/10, 0)
  8961. e.Transparency = e.Transparency + 0.030
  8962. end
  8963. wait(0.01)
  8964. end
  8965.  
  8966. end))
  8967. end))
  8968.  
  8969.  
  8970. end
  8971.  
  8972. mouse.KeyDown:connect(function(key)
  8973. if key == "x" then
  8974. effect:Play()
  8975. iteffect()
  8976. leport()
  8977. --iteffect()
  8978. end
  8979. end)
  8980.  
  8981. warn("--")
  8982. print("Now, credits...")
  8983. warn("S'k'ript made by The_Greed")
  8984. warn("Director/Editor Eminic112")
  8985. warn("Credits to Pedrorb03 by the particle/aura textures")
  8986. warn("Also thanks to @VenturianSonic for LB and UI Hair Meshes, and for the Instant Transmission 'line' effects")
  8987. print("Have fun!")
  8988. warn("--")
  8989.  
  8990. --
  8991.  
  8992. local Figure = script.Parent
  8993. local Torso = Figure:WaitForChild("Torso")
  8994. local RightShoulder = Torso:WaitForChild("Right Shoulder")
  8995. local LeftShoulder = Torso:WaitForChild("Left Shoulder")
  8996. local RightHip = Torso:WaitForChild("Right Hip")
  8997. local LeftHip = Torso:WaitForChild("Left Hip")
  8998. local Neck = Torso:WaitForChild("Neck")
  8999. local Humanoid = Figure:WaitForChild("DragonBallSuperHumanoid")
  9000. local pose = "Standing"
  9001.  
  9002. local currentAnim = ""
  9003. local currentAnimInstance = nil
  9004. local currentAnimTrack = nil
  9005. local currentAnimKeyframeHandler = nil
  9006. local currentAnimSpeed = 1.0
  9007. local animTable = {}
  9008. local animNames = {
  9009. idle = {
  9010. { id = "http://www.roblox.com/asset/?id=180435571", weight = 9 },
  9011. { id = "http://www.roblox.com/asset/?id=180435792", weight = 1 }
  9012. },
  9013. walk = {
  9014. { id = "http://www.roblox.com/asset/?id=180426354", weight = 10 }
  9015. },
  9016. run = {
  9017. { id = "run.xml", weight = 10 }
  9018. },
  9019. jump = {
  9020. { id = "http://www.roblox.com/asset/?id=125750702", weight = 10 }
  9021. },
  9022. fall = {
  9023. { id = "http://www.roblox.com/asset/?id=180436148", weight = 10 }
  9024. },
  9025. climb = {
  9026. { id = "http://www.roblox.com/asset/?id=180436334", weight = 10 }
  9027. },
  9028. sit = {
  9029. { id = "http://www.roblox.com/asset/?id=178130996", weight = 10 }
  9030. },
  9031. toolnone = {
  9032. { id = "http://www.roblox.com/asset/?id=182393478", weight = 10 }
  9033. },
  9034. toolslash = {
  9035. { id = "http://www.roblox.com/asset/?id=129967390", weight = 10 }
  9036. -- { id = "slash.xml", weight = 10 }
  9037. },
  9038. toollunge = {
  9039. { id = "http://www.roblox.com/asset/?id=129967478", weight = 10 }
  9040. },
  9041. wave = {
  9042. { id = "http://www.roblox.com/asset/?id=128777973", weight = 10 }
  9043. },
  9044. point = {
  9045. { id = "http://www.roblox.com/asset/?id=128853357", weight = 10 }
  9046. },
  9047. dance1 = {
  9048. { id = "http://www.roblox.com/asset/?id=182435998", weight = 10 },
  9049. { id = "http://www.roblox.com/asset/?id=182491037", weight = 10 },
  9050. { id = "http://www.roblox.com/asset/?id=182491065", weight = 10 }
  9051. },
  9052. dance2 = {
  9053. { id = "http://www.roblox.com/asset/?id=182436842", weight = 10 },
  9054. { id = "http://www.roblox.com/asset/?id=182491248", weight = 10 },
  9055. { id = "http://www.roblox.com/asset/?id=182491277", weight = 10 }
  9056. },
  9057. dance3 = {
  9058. { id = "http://www.roblox.com/asset/?id=182436935", weight = 10 },
  9059. { id = "http://www.roblox.com/asset/?id=182491368", weight = 10 },
  9060. { id = "http://www.roblox.com/asset/?id=182491423", weight = 10 }
  9061. },
  9062. laugh = {
  9063. { id = "http://www.roblox.com/asset/?id=129423131", weight = 10 }
  9064. },
  9065. cheer = {
  9066. { id = "http://www.roblox.com/asset/?id=129423030", weight = 10 }
  9067. },
  9068. }
  9069. local dances = {"dance1", "dance2", "dance3"}
  9070.  
  9071. -- Existance in this list signifies that it is an emote, the value indicates if it is a looping emote
  9072. local emoteNames = { wave = false, point = false, dance1 = true, dance2 = true, dance3 = true, laugh = false, cheer = false}
  9073.  
  9074. function configureAnimationSet(name, fileList)
  9075. if (animTable[name] ~= nil) then
  9076. for _, connection in pairs(animTable[name].connections) do
  9077. connection:disconnect()
  9078. end
  9079. end
  9080. animTable[name] = {}
  9081. animTable[name].count = 0
  9082. animTable[name].totalWeight = 0
  9083. animTable[name].connections = {}
  9084.  
  9085. -- check for config values
  9086. local config = script:FindFirstChild(name)
  9087. if (config ~= nil) then
  9088. -- print("Loading anims " .. name)
  9089. table.insert(animTable[name].connections, config.ChildAdded:connect(function(child) configureAnimationSet(name, fileList) end))
  9090. table.insert(animTable[name].connections, config.ChildRemoved:connect(function(child) configureAnimationSet(name, fileList) end))
  9091. local idx = 1
  9092. for _, childPart in pairs(config:GetChildren()) do
  9093. if (childPart:IsA("Animation")) then
  9094. table.insert(animTable[name].connections, childPart.Changed:connect(function(property) configureAnimationSet(name, fileList) end))
  9095. animTable[name][idx] = {}
  9096. animTable[name][idx].anim = childPart
  9097. local weightObject = childPart:FindFirstChild("Weight")
  9098. if (weightObject == nil) then
  9099. animTable[name][idx].weight = 1
  9100. else
  9101. animTable[name][idx].weight = weightObject.Value
  9102. end
  9103. animTable[name].count = animTable[name].count + 1
  9104. animTable[name].totalWeight = animTable[name].totalWeight + animTable[name][idx].weight
  9105. -- print(name .. " [" .. idx .. "] " .. animTable[name][idx].anim.AnimationId .. " (" .. animTable[name][idx].weight .. ")")
  9106. idx = idx + 1
  9107. end
  9108. end
  9109. end
  9110.  
  9111. -- fallback to defaults
  9112. if (animTable[name].count <= 0) then
  9113. for idx, anim in pairs(fileList) do
  9114. animTable[name][idx] = {}
  9115. animTable[name][idx].anim = Instance.new("Animation")
  9116. animTable[name][idx].anim.Name = name
  9117. animTable[name][idx].anim.AnimationId = anim.id
  9118. animTable[name][idx].weight = anim.weight
  9119. animTable[name].count = animTable[name].count + 1
  9120. animTable[name].totalWeight = animTable[name].totalWeight + anim.weight
  9121. -- print(name .. " [" .. idx .. "] " .. anim.id .. " (" .. anim.weight .. ")")
  9122. end
  9123. end
  9124. end
  9125.  
  9126. -- Setup animation objects
  9127. function scriptChildModified(child)
  9128. local fileList = animNames[child.Name]
  9129. if (fileList ~= nil) then
  9130. configureAnimationSet(child.Name, fileList)
  9131. end
  9132. end
  9133.  
  9134. script.ChildAdded:connect(scriptChildModified)
  9135. script.ChildRemoved:connect(scriptChildModified)
  9136.  
  9137.  
  9138. for name, fileList in pairs(animNames) do
  9139. configureAnimationSet(name, fileList)
  9140. end
  9141.  
  9142. -- ANIMATION
  9143.  
  9144. -- declarations
  9145. local toolAnim = "None"
  9146. local toolAnimTime = 0
  9147.  
  9148. local jumpAnimTime = 0
  9149. local jumpAnimDuration = 0.3
  9150.  
  9151. local toolTransitionTime = 0.1
  9152. local fallTransitionTime = 0.3
  9153. local jumpMaxLimbVelocity = 0.75
  9154.  
  9155. -- functions
  9156.  
  9157. function stopAllAnimations()
  9158. local oldAnim = currentAnim
  9159.  
  9160. -- return to idle if finishing an emote
  9161. if (emoteNames[oldAnim] ~= nil and emoteNames[oldAnim] == false) then
  9162. oldAnim = "idle"
  9163. end
  9164.  
  9165. currentAnim = ""
  9166. currentAnimInstance = nil
  9167. if (currentAnimKeyframeHandler ~= nil) then
  9168. currentAnimKeyframeHandler:disconnect()
  9169. end
  9170.  
  9171. if (currentAnimTrack ~= nil) then
  9172. currentAnimTrack:Stop()
  9173. currentAnimTrack:Destroy()
  9174. currentAnimTrack = nil
  9175. end
  9176. return oldAnim
  9177. end
  9178.  
  9179. function setAnimationSpeed(speed)
  9180. if speed ~= currentAnimSpeed then
  9181. currentAnimSpeed = speed
  9182. currentAnimTrack:AdjustSpeed(currentAnimSpeed)
  9183. end
  9184. end
  9185.  
  9186. function keyFrameReachedFunc(frameName)
  9187. if (frameName == "End") then
  9188.  
  9189. local repeatAnim = currentAnim
  9190. -- return to idle if finishing an emote
  9191. if (emoteNames[repeatAnim] ~= nil and emoteNames[repeatAnim] == false) then
  9192. repeatAnim = "idle"
  9193. end
  9194.  
  9195. local animSpeed = currentAnimSpeed
  9196. playAnimation(repeatAnim, 0.0, Humanoid)
  9197. setAnimationSpeed(animSpeed)
  9198. end
  9199. end
  9200.  
  9201. -- Preload animations
  9202. function playAnimation(animName, transitionTime, humanoid)
  9203.  
  9204. local roll = math.random(1, animTable[animName].totalWeight)
  9205. local origRoll = roll
  9206. local idx = 1
  9207. while (roll > animTable[animName][idx].weight) do
  9208. roll = roll - animTable[animName][idx].weight
  9209. idx = idx + 1
  9210. end
  9211. -- print(animName .. " " .. idx .. " [" .. origRoll .. "]")
  9212. local anim = animTable[animName][idx].anim
  9213.  
  9214. -- switch animation
  9215. if (anim ~= currentAnimInstance) then
  9216.  
  9217. if (currentAnimTrack ~= nil) then
  9218. currentAnimTrack:Stop(transitionTime)
  9219. currentAnimTrack:Destroy()
  9220. end
  9221.  
  9222. currentAnimSpeed = 1.0
  9223.  
  9224. -- load it to the humanoid; get AnimationTrack
  9225. currentAnimTrack = humanoid:LoadAnimation(anim)
  9226. currentAnimTrack.Priority = Enum.AnimationPriority.Core
  9227.  
  9228. -- play the animation
  9229. currentAnimTrack:Play(transitionTime)
  9230. currentAnim = animName
  9231. currentAnimInstance = anim
  9232.  
  9233. -- set up keyframe name triggers
  9234. if (currentAnimKeyframeHandler ~= nil) then
  9235. currentAnimKeyframeHandler:disconnect()
  9236. end
  9237. currentAnimKeyframeHandler = currentAnimTrack.KeyframeReached:connect(keyFrameReachedFunc)
  9238.  
  9239. end
  9240.  
  9241. end
  9242.  
  9243. -------------------------------------------------------------------------------------------
  9244. -------------------------------------------------------------------------------------------
  9245.  
  9246. local toolAnimName = ""
  9247. local toolAnimTrack = nil
  9248. local toolAnimInstance = nil
  9249. local currentToolAnimKeyframeHandler = nil
  9250.  
  9251. function toolKeyFrameReachedFunc(frameName)
  9252. if (frameName == "End") then
  9253. -- print("Keyframe : ".. frameName)
  9254. playToolAnimation(toolAnimName, 0.0, Humanoid)
  9255. end
  9256. end
  9257.  
  9258.  
  9259. function playToolAnimation(animName, transitionTime, humanoid, priority)
  9260.  
  9261. local roll = math.random(1, animTable[animName].totalWeight)
  9262. local origRoll = roll
  9263. local idx = 1
  9264. while (roll > animTable[animName][idx].weight) do
  9265. roll = roll - animTable[animName][idx].weight
  9266. idx = idx + 1
  9267. end
  9268. -- print(animName .. " * " .. idx .. " [" .. origRoll .. "]")
  9269. local anim = animTable[animName][idx].anim
  9270.  
  9271. if (toolAnimInstance ~= anim) then
  9272.  
  9273. if (toolAnimTrack ~= nil) then
  9274. toolAnimTrack:Stop()
  9275. toolAnimTrack:Destroy()
  9276. transitionTime = 0
  9277. end
  9278.  
  9279. -- load it to the humanoid; get AnimationTrack
  9280. toolAnimTrack = humanoid:LoadAnimation(anim)
  9281. if priority then
  9282. toolAnimTrack.Priority = priority
  9283. end
  9284.  
  9285. -- play the animation
  9286. toolAnimTrack:Play(transitionTime)
  9287. toolAnimName = animName
  9288. toolAnimInstance = anim
  9289.  
  9290. currentToolAnimKeyframeHandler = toolAnimTrack.KeyframeReached:connect(toolKeyFrameReachedFunc)
  9291. end
  9292. end
  9293.  
  9294. function stopToolAnimations()
  9295. local oldAnim = toolAnimName
  9296.  
  9297. if (currentToolAnimKeyframeHandler ~= nil) then
  9298. currentToolAnimKeyframeHandler:disconnect()
  9299. end
  9300.  
  9301. toolAnimName = ""
  9302. toolAnimInstance = nil
  9303. if (toolAnimTrack ~= nil) then
  9304. toolAnimTrack:Stop()
  9305. toolAnimTrack:Destroy()
  9306. toolAnimTrack = nil
  9307. end
  9308.  
  9309.  
  9310. return oldAnim
  9311. end
  9312.  
  9313. -------------------------------------------------------------------------------------------
  9314. -------------------------------------------------------------------------------------------
  9315.  
  9316.  
  9317. function onRunning(speed)
  9318. if speed > 0.01 then
  9319. playAnimation("walk", 0.1, Humanoid)
  9320. if currentAnimInstance and currentAnimInstance.AnimationId == "http://www.roblox.com/asset/?id=180426354" then
  9321. setAnimationSpeed(speed / 14.5)
  9322. end
  9323. pose = "Running"
  9324. else
  9325. if emoteNames[currentAnim] == nil then
  9326. playAnimation("idle", 0.1, Humanoid)
  9327. pose = "Standing"
  9328. end
  9329. end
  9330. end
  9331.  
  9332. function onDied()
  9333. pose = "Dead"
  9334. end
  9335.  
  9336. function onJumping()
  9337. playAnimation("jump", 0.1, Humanoid)
  9338. jumpAnimTime = jumpAnimDuration
  9339. pose = "Jumping"
  9340. end
  9341.  
  9342. function onClimbing(speed)
  9343. playAnimation("climb", 0.1, Humanoid)
  9344. setAnimationSpeed(speed / 12.0)
  9345. pose = "Climbing"
  9346. end
  9347.  
  9348. function onGettingUp()
  9349. pose = "GettingUp"
  9350. end
  9351.  
  9352. function onFreeFall()
  9353. if (jumpAnimTime <= 0) then
  9354. playAnimation("fall", fallTransitionTime, Humanoid)
  9355. end
  9356. pose = "FreeFall"
  9357. end
  9358.  
  9359. function onFallingDown()
  9360. pose = "FallingDown"
  9361. end
  9362.  
  9363. function onSeated()
  9364. pose = "Seated"
  9365. end
  9366.  
  9367. function onPlatformStanding()
  9368. pose = "PlatformStanding"
  9369. end
  9370.  
  9371. function onSwimming(speed)
  9372. if speed > 0 then
  9373. pose = "Running"
  9374. else
  9375. pose = "Standing"
  9376. end
  9377. end
  9378.  
  9379. function getTool()
  9380. for _, kid in ipairs(Figure:GetChildren()) do
  9381. if kid.className == "Tool" then return kid end
  9382. end
  9383. return nil
  9384. end
  9385.  
  9386. function getToolAnim(tool)
  9387. for _, c in ipairs(tool:GetChildren()) do
  9388. if c.Name == "toolanim" and c.className == "StringValue" then
  9389. return c
  9390. end
  9391. end
  9392. return nil
  9393. end
  9394.  
  9395. function animateTool()
  9396.  
  9397. if (toolAnim == "None") then
  9398. playToolAnimation("toolnone", toolTransitionTime, Humanoid, Enum.AnimationPriority.Idle)
  9399. return
  9400. end
  9401.  
  9402. if (toolAnim == "Slash") then
  9403. playToolAnimation("toolslash", 0, Humanoid, Enum.AnimationPriority.Action)
  9404. return
  9405. end
  9406.  
  9407. if (toolAnim == "Lunge") then
  9408. playToolAnimation("toollunge", 0, Humanoid, Enum.AnimationPriority.Action)
  9409. return
  9410. end
  9411. end
  9412.  
  9413. function moveSit()
  9414. RightShoulder.MaxVelocity = 0.15
  9415. LeftShoulder.MaxVelocity = 0.15
  9416. RightShoulder:SetDesiredAngle(3.14 /2)
  9417. LeftShoulder:SetDesiredAngle(-3.14 /2)
  9418. RightHip:SetDesiredAngle(3.14 /2)
  9419. LeftHip:SetDesiredAngle(-3.14 /2)
  9420. end
  9421.  
  9422. local lastTick = 0
  9423.  
  9424. function move(time)
  9425. local amplitude = 1
  9426. local frequency = 1
  9427. local deltaTime = time - lastTick
  9428. lastTick = time
  9429.  
  9430. local climbFudge = 0
  9431. local setAngles = false
  9432.  
  9433. if (jumpAnimTime > 0) then
  9434. jumpAnimTime = jumpAnimTime - deltaTime
  9435. end
  9436.  
  9437. if (pose == "FreeFall" and jumpAnimTime <= 0) then
  9438. playAnimation("fall", fallTransitionTime, Humanoid)
  9439. elseif (pose == "Seated") then
  9440. playAnimation("sit", 0.5, Humanoid)
  9441. return
  9442. elseif (pose == "Running") then
  9443. playAnimation("walk", 0.1, Humanoid)
  9444. elseif (pose == "Dead" or pose == "GettingUp" or pose == "FallingDown" or pose == "Seated" or pose == "PlatformStanding") then
  9445. -- print("Wha " .. pose)
  9446. stopAllAnimations()
  9447. amplitude = 0.1
  9448. frequency = 1
  9449. setAngles = true
  9450. end
  9451.  
  9452. if (setAngles) then
  9453. local desiredAngle = amplitude * math.sin(time * frequency)
  9454.  
  9455. RightShoulder:SetDesiredAngle(desiredAngle + climbFudge)
  9456. LeftShoulder:SetDesiredAngle(desiredAngle - climbFudge)
  9457. RightHip:SetDesiredAngle(-desiredAngle)
  9458. LeftHip:SetDesiredAngle(-desiredAngle)
  9459. end
  9460.  
  9461. -- Tool Animation handling
  9462. local tool = getTool()
  9463. if tool and tool:FindFirstChild("Handle") then
  9464.  
  9465. local animStringValueObject = getToolAnim(tool)
  9466.  
  9467. if animStringValueObject then
  9468. toolAnim = animStringValueObject.Value
  9469. -- message recieved, delete StringValue
  9470. animStringValueObject.Parent = nil
  9471. toolAnimTime = time + .3
  9472. end
  9473.  
  9474. if time > toolAnimTime then
  9475. toolAnimTime = 0
  9476. toolAnim = "None"
  9477. end
  9478.  
  9479. animateTool()
  9480. else
  9481. stopToolAnimations()
  9482. toolAnim = "None"
  9483. toolAnimInstance = nil
  9484. toolAnimTime = 0
  9485. end
  9486. end
  9487.  
  9488. -- connect events
  9489. Humanoid.Died:connect(onDied)
  9490. Humanoid.Running:connect(onRunning)
  9491. Humanoid.Jumping:connect(onJumping)
  9492. Humanoid.Climbing:connect(onClimbing)
  9493. Humanoid.GettingUp:connect(onGettingUp)
  9494. Humanoid.FreeFalling:connect(onFreeFall)
  9495. Humanoid.FallingDown:connect(onFallingDown)
  9496. Humanoid.Seated:connect(onSeated)
  9497. Humanoid.PlatformStanding:connect(onPlatformStanding)
  9498. Humanoid.Swimming:connect(onSwimming)
  9499.  
  9500. -- setup emote chat hook
  9501. game:GetService("Players").LocalPlayer.Chatted:connect(function(msg)
  9502. local emote = ""
  9503. if msg == "/e dance" then
  9504. emote = dances[math.random(1, #dances)]
  9505. elseif (string.sub(msg, 1, 3) == "/e ") then
  9506. emote = string.sub(msg, 4)
  9507. elseif (string.sub(msg, 1, 7) == "/emote ") then
  9508. emote = string.sub(msg, 8)
  9509. end
  9510.  
  9511. if (pose == "Standing" and emoteNames[emote] ~= nil) then
  9512. playAnimation(emote, 0.1, Humanoid)
  9513. end
  9514.  
  9515. end)
  9516.  
  9517.  
  9518. -- main program
  9519.  
  9520. -- initialize to idle
  9521. playAnimation("idle", 0.1, Humanoid)
  9522. pose = "Standing"
  9523.  
  9524. while Figure.Parent ~= nil do
  9525. local _, time = wait(0.1)
  9526. move(time)
  9527. end
  9528.  
  9529. script.Name = "GokuNonCannon"
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement