Advertisement
Animescapetower

Void Shadow

Jan 20th, 2018
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 55.15 KB | None | 0 0
  1. print("Music by FunTimeArtic")
  2. plr = game.Players.LocalPlayer
  3. repeat
  4. wait(0.4)
  5. until plr.Character
  6. chr = plr.Character
  7. human = chr:FindFirstChild("Humanoid")
  8. mouse = plr:GetMouse()
  9. selected = false
  10. equipd = false
  11. tors = chr.Torso
  12. rarm = chr["Right Arm"]
  13. larm = chr["Left Arm"]
  14. rleg = chr["Right Leg"]
  15. lleg = chr["Left Leg"]
  16. hrp = chr.HumanoidRootPart
  17. head = chr.Head
  18. anim = human.Animator
  19. activu = false
  20. torrent = false
  21. boxingu = false
  22. Heartbeat = Instance.new("BindableEvent")
  23. Heartbeat.Name = "Heartbeat"
  24. Heartbeat.Parent = script
  25. frame = 0.03333333333333333
  26. tf = 0
  27. local bla3 = Instance.new("Sound")
  28. bla3.SoundId = "rbxassetid://1273944801"
  29. bla3.Volume = 1
  30. bla3.Pitch = 1
  31. bla3.Parent = workspace
  32. bla3:Play()
  33.  
  34.  
  35.  
  36. game:GetService("RunService").Heartbeat:connect(function(s, p)
  37. tf = tf + s
  38. if tf >= frame then
  39. for i = 1, math.floor(tf / frame) do
  40. Heartbeat:Fire()
  41. end
  42. tf = tf - frame * math.floor(tf / frame)
  43. end
  44. end)
  45. function swait(num)
  46. if num == 0 or num == nil then
  47. Heartbeat.Event:wait()
  48. else
  49. for i = 1, num do
  50. Heartbeat.Event:wait()
  51. end
  52. end
  53. end
  54. tool = Instance.new("Tool")
  55. tool.CanBeDropped = false
  56. tool.RequiresHandle = false
  57. tool.TextureId = ""
  58. tool.ToolTip = "Virus"
  59. tool.Name = "Nokaioa"
  60. tool.Parent = plr.Backpack
  61. modz = Instance.new("Model")
  62. modz.Name = "memes"
  63. modz.Parent = chr
  64. RSC0 = CFrame.new(1, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  65. RSC1 = CFrame.new(-0.5, 0.5, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  66. LSC0 = CFrame.new(-1, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  67. LSC1 = CFrame.new(0.5, 0.5, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  68. RHC0 = CFrame.new(1, -1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  69. RHC1 = CFrame.new(0.5, 1, 0, 0, 0, 1, 0, 1, 0, -1, 0, 0)
  70. LHC0 = CFrame.new(-1, -1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  71. LHC1 = CFrame.new(-0.5, 1, 0, 0, 0, -1, 0, 1, 0, 1, 0, 0)
  72. NC0 = CFrame.new(0, 1, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  73. NC1 = CFrame.new(0, -0.5, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  74. RJC0 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  75. RJC1 = CFrame.new(0, 0, 0, -1, 0, 0, 0, 0, 1, 0, 1, 0)
  76. RS = tors:FindFirstChild("Right Shoulder")
  77. LS = tors:FindFirstChild("Left Shoulder")
  78. RH = tors:FindFirstChild("Right Hip")
  79. LH = tors:FindFirstChild("Left Hip")
  80. RJ = hrp:FindFirstChild("RootJoint")
  81. N = tors:FindFirstChild("Neck")
  82. cf = CFrame.new
  83. ang = CFrame.Angles
  84. rd = math.rad
  85. rd2 = math.random
  86. function nooutline(p)
  87. p.TopSurface, p.BottomSurface, p.LeftSurface, p.RightSurface, p.FrontSurface, p.BottomSurface = 10, 10, 10, 10, 10, 10
  88. end
  89. function makepart(color, name, reflec, mater, parnt, cfram)
  90. local port = Instance.new("Part")
  91. port.BrickColor = BrickColor.new(color)
  92. port.Name = name
  93. port.Transparency = 1
  94. nooutline(port)
  95. port.Reflectance = reflec
  96. port.Material = mater
  97. port.Anchored = false
  98. port.CanCollide = false
  99. port.Locked = true
  100. port.Size = Vector3.new(0.2, 0.2, 0.2)
  101. port.Parent = parnt
  102. return port
  103. end
  104. function makemesh(meshtype, scale, meshid, parent)
  105. local mes = Instance.new("SpecialMesh")
  106. mes.MeshType = meshtype
  107. mes.Scale = scale
  108. if meshtype == "FileMesh" then
  109. mes.MeshId = meshid
  110. end
  111. mes.Parent = parent
  112. return mes
  113. end
  114. function makeweld(parent, p0, p1, c0, c1)
  115. local wel = Instance.new("Weld")
  116. wel.Part0 = p0
  117. wel.Part1 = p1
  118. wel.C0 = c0
  119. if c1 ~= nil then
  120. wel.C1 = c1
  121. end
  122. wel.Parent = parent
  123. return wel
  124. end
  125. function vidp(prnt)
  126. local s = Instance.new("ParticleEmitter")
  127. s.Enabled = false
  128. s.LockedToPart = true
  129. s.Color = ColorSequence.new(Color3.new("Black"))
  130. s.LightEmission = 0.6
  131. s.Size = NumberSequence.new({
  132. NumberSequenceKeypoint.new(0, 0.275, 0),
  133. NumberSequenceKeypoint.new(0.406, 0.762, 0),
  134. NumberSequenceKeypoint.new(0.433, 2.05, 0.75),
  135. NumberSequenceKeypoint.new(0.476, 0.625, 0),
  136. NumberSequenceKeypoint.new(1, 0.05, 0)
  137. })
  138. s.Texture = "rbxassetid://31270182"
  139. s.Transparency = NumberSequence.new({
  140. NumberSequenceKeypoint.new(0, 0.6, 0),
  141. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  142. NumberSequenceKeypoint.new(1, 1, 0)
  143. })
  144. s.Name = "vid"
  145. s.Lifetime = NumberRange.new(0.2)
  146. s.Rate = 25
  147. s.Speed = NumberRange.new(7, 10)
  148. s.VelocitySpread = 360
  149. s.Parent = prnt
  150. local s2 = Instance.new("ParticleEmitter")
  151. s2.Enabled = false
  152. s2.LockedToPart = false
  153. s2.Color = ColorSequence.new(Color3.new("Black"))
  154. s2.LightEmission = 0.6
  155. s2.Size = NumberSequence.new({
  156. NumberSequenceKeypoint.new(0, 0, 0),
  157. NumberSequenceKeypoint.new(0.853, 0.125, 0.1),
  158. NumberSequenceKeypoint.new(1, 0, 0)
  159. })
  160. s2.Texture = "rbxassetid://31270182"
  161. s2.Transparency = NumberSequence.new({
  162. NumberSequenceKeypoint.new(0, 0.6, 0),
  163. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  164. NumberSequenceKeypoint.new(1, 1, 0)
  165. })
  166. s2.Name = "vid2"
  167. s2.Lifetime = NumberRange.new(0.5)
  168. s2.Rate = 150
  169. s2.Speed = NumberRange.new(2, 6)
  170. s2.VelocitySpread = 360
  171. s2.Parent = prnt
  172. end
  173. function glow(tz, paz, length)
  174. if tz.Parent:FindFirstChildOfClass("Humanoid") and paz.Transparency == 1 then
  175. do
  176. local s = Instance.new("Sound")
  177. s.SoundId = "rbxassetid://221727606"
  178. s.Volume = 0.25
  179. s.Pitch = math.random(9, 11) / 10
  180. s.Parent = paz
  181. s:Play()
  182. local hmesh = Instance.new("SpecialMesh")
  183. hmesh.MeshType = "FileMesh"
  184. hmesh.MeshId = "NOSSIN"
  185. hmesh.Parent = paz.Parent
  186. paz.Transparency = 0.55
  187. paz.vid.Enabled = true
  188. paz.vid2.Enabled = true
  189. delay(length, function()
  190. paz.Transparency = 1
  191. paz.vid.Enabled = false
  192. paz.vid2.Enabled = false
  193. hmesh:Destroy()
  194. s:Destroy()
  195. end)
  196. end
  197. end
  198. end
  199. function makeglow()
  200. for _, p in pairs(chr:GetChildren()) do
  201. if p.ClassName == "Accessory" then
  202. do
  203. local h = p:FindFirstChildOfClass("Part")
  204. local nh = h:Clone()
  205. for _, n in ipairs(nh:GetChildren()) do
  206. if n.ClassName == "Attachment" or n.ClassName == "Motor6D" then
  207. n:Destroy()
  208. end
  209. end
  210. nooutline(nh)
  211. nh.Parent = nil
  212. nh.CFrame = h.CFrame
  213. nh.Transparency = 1
  214. nh.Name = "Glow"
  215. nh.Material = "Neon"
  216. nh.BrickColor = BrickColor.new("Black")
  217. nh.CustomPhysicalProperties = PhysicalProperties.new(0.2, 0.3, 0.5)
  218. nh.CanCollide = false
  219. nh.Parent = h
  220. makeweld(nh, nh, h, cf(0, 0, 0))
  221. local m = nh:FindFirstChildOfClass("SpecialMesh")
  222. m.Scale = m.Scale + Vector3.new(0.06, 0.06, 0.06)
  223. m.TextureId = ""
  224. vidp(nh)
  225. nh.Touched:connect(function(po)
  226. glow(po, nh, 0.8)
  227. end)
  228. end
  229. elseif p.ClassName == "Part" and p ~= hrp then
  230. do
  231. local n = p:Clone()
  232. for _, m in ipairs(n:GetChildren()) do
  233. if m.ClassName == "Attachment" or m.ClassName == "Motor6D" then
  234. m:Destroy()
  235. end
  236. end
  237. nooutline(n)
  238. n.Parent = nil
  239. n.Transparency = 1
  240. n.Material = "Neon"
  241. n.Name = "Glow"
  242. n.BrickColor = BrickColor.new("Black")
  243. n.CFrame = p.CFrame
  244. n.CustomPhysicalProperties = PhysicalProperties.new(0.2, 0.3, 0.5)
  245. n.CanCollide = false
  246. n.Parent = p
  247. makeweld(n, n, p, cf(0, 0, 0))
  248. vidp(n)
  249. n.Touched:connect(function(po)
  250. glow(po, n, 0.8)
  251. end)
  252. if n:FindFirstChildOfClass("Decal") then
  253. n:FindFirstChildOfClass("Decal"):Destroy()
  254. end
  255. if p:FindFirstChildOfClass("SpecialMesh") then
  256. local c = p:FindFirstChildOfClass("SpecialMesh"):Clone()
  257. c.Parent = nil
  258. c.Scale = c.Scale + Vector3.new(0.05, 0.05, 0.05)
  259. c.Parent = n
  260. else
  261. local m = Instance.new("BlockMesh")
  262. m.Scale = Vector3.new(1.05, 1.025, 1.05)
  263. if p == tors then
  264. m.Scale = Vector3.new(1.05, 1.05, 1.05)
  265. end
  266. m.Parent = n
  267. end
  268. end
  269. end
  270. end
  271. end
  272. makeglow()
  273. function lerpz(joint, prop, cfrmz, alp)
  274. joint[prop] = joint[prop]:lerp(cfrmz, alp)
  275. end
  276. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  277. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  278. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  279. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  280. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  281. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  282. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  283. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  284. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  285. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  286. function resetlerp()
  287. RJ.C0 = RJC0
  288. RJ.C1 = RJC1
  289. N.C0 = NC0
  290. N.C1 = NC1
  291. RS.C0 = RSC0
  292. RS.C1 = RSC1
  293. LS.C0 = LSC0
  294. LS.C1 = LSC1
  295. RH.C0 = RHC0
  296. RH.C1 = RHC1
  297. LH.C0 = LHC0
  298. end
  299. local ign = {chr}
  300. function proj(cframe)
  301. coroutine.resume(coroutine.create(function()
  302. local mis = Instance.new("Part")
  303. mis.Anchored = true
  304. mis.CanCollide = false
  305. mis.Size = Vector3.new(1, 1, 1)
  306. mis.Transparency = 1
  307. mis.Name = "pew"
  308. mis.CFrame = cframe
  309. mis.Parent = workspace
  310. local s = Instance.new("ParticleEmitter")
  311. s.Enabled = true
  312. s.Color = ColorSequence.new(Color3.new("Black"))
  313. s.LightEmission = 0.6
  314. s.Size = NumberSequence.new({
  315. NumberSequenceKeypoint.new(0, 0.4, 0),
  316. NumberSequenceKeypoint.new(0.0241, 0.0625, 0),
  317. NumberSequenceKeypoint.new(0.0299, 0.66, 0.22),
  318. NumberSequenceKeypoint.new(0.0344, 0.0225, 0),
  319. NumberSequenceKeypoint.new(1, 0, 0)
  320. })
  321. s.Texture = "rbxassetid://31270182"
  322. s.Transparency = NumberSequence.new({
  323. NumberSequenceKeypoint.new(0, 0.6, 0),
  324. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  325. NumberSequenceKeypoint.new(1, 1, 0)
  326. })
  327. s.Name = "vid"
  328. s.Lifetime = NumberRange.new(1)
  329. s.ZOffset = 0
  330. s.Rate = 3000
  331. s.Speed = NumberRange.new(25, 50)
  332. s.VelocitySpread = 20
  333. s.EmissionDirection = "Back"
  334. s.Parent = mis
  335. game.Debris:AddItem(mis, 10)
  336. table.insert(ign, mis)
  337. local wat = 0
  338. local derp = false
  339. local v = Instance.new("Sound")
  340. v.SoundId = "rbxassetid://221727606"
  341. v.Volume = 0.5
  342. v.Looped = true
  343. v.EmitterSize = 15
  344. v.MaxDistance = 40
  345. v.Pitch = math.random(12, 13) / 10
  346. v.Parent = mis
  347. v:Play()
  348. repeat
  349. swait()
  350. wat = wat + 1
  351. local ry = Ray.new(mis.Position, mis.CFrame.lookVector * 8)
  352. local prt, pos = workspace:FindPartOnRayWithIgnoreList(ry, ign, false, true)
  353. if prt and pos and 1 > prt.Transparency then
  354. derp = true
  355. mis.CFrame = CFrame.new(pos)
  356. v:Stop()
  357. s.Enabled = false
  358. s.Speed = NumberRange.new(15, 25)
  359. s.Lifetime = NumberRange.new(5)
  360. s.VelocitySpread = 360
  361. s:Emit(40)
  362. local n = Instance.new("Sound")
  363. n.Volume = 0.75
  364. n.Pitch = rd2(9, 11) / 10
  365. n.SoundId = "rbxassetid://184374162"
  366. n.Parent = mis
  367. n:Play()
  368. hito(mis, 300, 500000, 0.01)
  369. else
  370. mis.CFrame = mis.CFrame * CFrame.new(0, 0, -5)
  371. end
  372. until wat == 50 or derp == true
  373. if wat == 50 then
  374. mis:Destroy()
  375. end
  376. if derp == true then
  377. game.Debris:AddItem(mis, 1)
  378. end
  379. end))
  380. end
  381. function makesword(swocfrm, weldp1, cframe0)
  382. local ay = function(name, size, parnt, cfram)
  383. local port = Instance.new("Part")
  384. port.BrickColor = BrickColor.new("Black")
  385. port.Name = name
  386. port.Transparency = 1
  387. nooutline(port)
  388. port.Material = "Neon"
  389. port.Anchored = false
  390. port.CanCollide = false
  391. port.Locked = true
  392. port.Size = size
  393. port.Parent = parnt
  394. return port
  395. end
  396. local swordmo = Instance.new("Model")
  397. swordmo.Name = "swod"
  398. swordmo.Parent = modz
  399. local booval = Instance.new("BoolValue")
  400. booval.Value = true
  401. booval.Name = "mememem"
  402. booval.Parent = swordmo
  403. local function pr(par, amt, sped)
  404. local s = Instance.new("ParticleEmitter")
  405. s.Enabled = false
  406. s.LockedToPart = true
  407. s.Color = ColorSequence.new(Color3.new("Black"))
  408. s.LightEmission = 0.6
  409. s.Size = NumberSequence.new({
  410. NumberSequenceKeypoint.new(0, 0.15, 0),
  411. NumberSequenceKeypoint.new(0.05, 0.3, 0.3),
  412. NumberSequenceKeypoint.new(0.1, 0.15, 0),
  413. NumberSequenceKeypoint.new(0.8, 0.2, 0),
  414. NumberSequenceKeypoint.new(1, 0, 0)
  415. })
  416. s.Texture = "rbxassetid://31270182"
  417. s.Transparency = NumberSequence.new({
  418. NumberSequenceKeypoint.new(0, 0.7, 0),
  419. NumberSequenceKeypoint.new(0.89, 0.7, 0),
  420. NumberSequenceKeypoint.new(1, 1, 0)
  421. })
  422. s.Name = "vid"
  423. s.Lifetime = NumberRange.new(0.75)
  424. s.Rate = 1
  425. s.Speed = sped
  426. s.VelocitySpread = 3
  427. s.Parent = par
  428. coroutine.resume(coroutine.create(function()
  429. while booval.Value do
  430. swait()
  431. s:Emit(amt)
  432. end
  433. end))
  434. return s
  435. end
  436. local ping = function(derp)
  437. local s3 = Instance.new("ParticleEmitter")
  438. s3.Enabled = false
  439. s3.LockedToPart = false
  440. s3.Color = ColorSequence.new(Color3.new("Black"))
  441. s3.LightEmission = 0.6
  442. s3.Size = NumberSequence.new({
  443. NumberSequenceKeypoint.new(0, 0.35, 0),
  444. NumberSequenceKeypoint.new(0.2, 0.25, 0.25),
  445. NumberSequenceKeypoint.new(0.4, 0.15, 0),
  446. NumberSequenceKeypoint.new(0.853, 0.25, 0.1),
  447. NumberSequenceKeypoint.new(1, 0, 0)
  448. })
  449. s3.Texture = "rbxassetid://31270182"
  450. s3.Transparency = NumberSequence.new({
  451. NumberSequenceKeypoint.new(0, 0.4, 0),
  452. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  453. NumberSequenceKeypoint.new(1, 1, 0)
  454. })
  455. s3.Name = "vid3"
  456. s3.Lifetime = NumberRange.new(0.5)
  457. s3.Acceleration = Vector3.new(0, 5, 0)
  458. s3.Rate = 350
  459. s3.Speed = NumberRange.new(10, 15)
  460. s3.VelocitySpread = 360
  461. s3.Parent = derp
  462. swait()
  463. s3:Emit(120)
  464. end
  465. local b1 = ay("b1", Vector3.new(0.3, 2.5, 0.3), swordmo, swocfrm)
  466. local p1 = pr(b1, 5, NumberRange.new(0, 1))
  467. if weldp1 then
  468. local w1 = makeweld(b1, b1, weldp1, cframe0, nil)
  469. end
  470. local bla = Instance.new("Sound")
  471. bla.SoundId = "rbxassetid://61425219"
  472. bla.Volume = 0.75
  473. bla.Pitch = math.random(7, 9) / 10
  474. bla.Parent = b1
  475. bla:Play()
  476. local b2 = ay("b2", Vector3.new(0.6, 0.75, 0.4), swordmo, swocfrm)
  477. local p2 = pr(b2, 1, NumberRange.new(0, 1))
  478. local w2 = makeweld(b2, b2, b1, ang(rd(180), rd(0), rd(0)) * cf(0, 1.5, 0), nil)
  479. local b3 = ay("b3", Vector3.new(0.7, 0.75, 0.5), swordmo, swocfrm)
  480. local p3 = pr(b3, 1, NumberRange.new(0, 3))
  481. local w3 = makeweld(b3, b3, b1, ang(rd(180), rd(90), rd(0)) * cf(0, -1.5, 0), nil)
  482. local b4 = ay("b4", Vector3.new(0.3, 0.75, 0.3), swordmo, swocfrm)
  483. local p4 = pr(b4, 1, NumberRange.new(1, 2))
  484. local w4 = makeweld(b4, b4, b3, cf(0, -0.5, 0) * ang(rd(70), rd(0), rd(0)), nil)
  485. local b5 = ay("b5", Vector3.new(0.3, 0.75, 0.3), swordmo, swocfrm)
  486. local p5 = pr(b5, 1, NumberRange.new(1, 2))
  487. local w5 = makeweld(b5, b5, b3, cf(0, -0.5, 0) * ang(rd(290), rd(0), rd(0)), nil)
  488. local b6 = ay("b6", Vector3.new(0.3, 0.5, 0.3), swordmo, swocfrm)
  489. local p6 = pr(b6, 1, NumberRange.new(1, 2))
  490. local w6 = makeweld(b6, b6, b3, cf(0, -0.25, 0) * ang(rd(35), rd(0), rd(0)), nil)
  491. local b7 = ay("b7", Vector3.new(0.3, 0.5, 0.3), swordmo, swocfrm)
  492. local p7 = pr(b7, 1, NumberRange.new(1, 2))
  493. local w7 = makeweld(b7, b7, b3, cf(0, -0.25, 0) * ang(rd(325), rd(0), rd(0)), nil)
  494. local b8 = ay("b8", Vector3.new(0.5, 5.5, 0.2), swordmo, swocfrm)
  495. local p8 = pr(b8, 9, NumberRange.new(1, 3))
  496. local w8 = makeweld(b8, b8, b1, ang(rd(0), rd(0), rd(0)) * cf(0, -4, 0), nil)
  497. local anbo = Instance.new("Part")
  498. anbo.Anchored = true
  499. anbo.CanCollide = false
  500. anbo.Size = Vector3.new(2.5, 9, 1)
  501. anbo.CFrame = b8.CFrame * cf(0, -1.5, 0)
  502. anbo.Transparency = 1
  503. anbo.Parent = workspace
  504. game.Debris:AddItem(anbo, 2)
  505. ping(anbo)
  506. local whos = Instance.new("ParticleEmitter")
  507. whos.Enabled = false
  508. whos.LockedToPart = false
  509. whos.Color = ColorSequence.new(Color3.new("Black"))
  510. whos.LightEmission = 0.6
  511. whos.Size = NumberSequence.new({
  512. NumberSequenceKeypoint.new(0, 0.15, 0),
  513. NumberSequenceKeypoint.new(0.05, 0.3, 0.3),
  514. NumberSequenceKeypoint.new(0.1, 0.15, 0),
  515. NumberSequenceKeypoint.new(0.8, 0.2, 0),
  516. NumberSequenceKeypoint.new(1, 0, 0)
  517. })
  518. whos.Texture = "rbxassetid://31270182"
  519. whos.Transparency = NumberSequence.new({
  520. NumberSequenceKeypoint.new(0, 0.7, 0),
  521. NumberSequenceKeypoint.new(0.89, 0.7, 0),
  522. NumberSequenceKeypoint.new(1, 1, 0)
  523. })
  524. whos.Name = "whoos"
  525. whos.Lifetime = NumberRange.new(0.75)
  526. whos.Rate = 2000
  527. whos.Speed = NumberRange.new(0)
  528. whos.VelocityInheritance = 0.8
  529. whos.VelocitySpread = 3
  530. whos.Parent = b8
  531. return swordmo
  532. end
  533. function removesword(swordmodel)
  534. swordmodel.mememem.Value = false
  535. local hn = swordmodel.b1
  536. hn.Anchored = true
  537. if hn:FindFirstChildOfClass("Weld") then
  538. hn:FindFirstChildOfClass("Weld"):Destroy()
  539. end
  540. local bla = Instance.new("Sound")
  541. bla.SoundId = "rbxassetid://192783601"
  542. bla.Volume = 1.25
  543. bla.Pitch = math.random(9, 10) / 10
  544. bla.Parent = hn
  545. bla:Play()
  546. local ping = function(derp)
  547. local s3 = Instance.new("ParticleEmitter")
  548. s3.Enabled = false
  549. s3.LockedToPart = false
  550. s3.Color = ColorSequence.new(Color3.new("Black"))
  551. s3.LightEmission = 0.6
  552. s3.Size = NumberSequence.new({
  553. NumberSequenceKeypoint.new(0, 0.35, 0),
  554. NumberSequenceKeypoint.new(0.2, 0.25, 0.25),
  555. NumberSequenceKeypoint.new(0.4, 0.15, 0),
  556. NumberSequenceKeypoint.new(0.853, 0.25, 0.1),
  557. NumberSequenceKeypoint.new(1, 0, 0)
  558. })
  559. s3.Texture = "rbxassetid://31270182"
  560. s3.Transparency = NumberSequence.new({
  561. NumberSequenceKeypoint.new(0, 0.4, 0),
  562. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  563. NumberSequenceKeypoint.new(1, 1, 0)
  564. })
  565. s3.Name = "vid3"
  566. s3.Lifetime = NumberRange.new(0.5)
  567. s3.Acceleration = Vector3.new(0, 5, 0)
  568. s3.Rate = 350
  569. s3.Speed = NumberRange.new(10, 15)
  570. s3.VelocitySpread = 360
  571. s3.Parent = derp
  572. swait()
  573. s3:Emit(180)
  574. end
  575. local anbo = Instance.new("Part")
  576. anbo.Anchored = true
  577. anbo.CanCollide = false
  578. anbo.Size = Vector3.new(2.5, 9, 1)
  579. anbo.CFrame = swordmodel.b8.CFrame * cf(0, -1.5, 0)
  580. anbo.Transparency = 1
  581. anbo.Parent = workspace
  582. game.Debris:AddItem(anbo, 2)
  583. ping(anbo)
  584. game.Debris:AddItem(swordmodel, 1.25)
  585. end
  586. function eswing()
  587. if activu == true or selected == false then
  588. return
  589. end
  590. activu = true
  591. local sw = makesword(hrp.CFrame, rarm, ang(rd(90), rd(0), rd(90)) * cf(0, 1, 0.5))
  592. animo(false)
  593. local hwel = sw.b1:FindFirstChildOfClass("Weld")
  594. local hwelc0 = hwel.C0
  595. local whoo = sw.b8:FindFirstChild("whoos")
  596. for _ = 1, 12 do
  597. swait()
  598. lerpz(RJ, "C0", RJC0 * cf(0, 0.75, 0) * ang(rd(0), rd(0), rd(-70)), 0.5)
  599. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(-6), rd(70)), 0.5)
  600. lerpz(N, "C1", NC1 * cf(0, 0, 0) * ang(rd(-13), rd(0), rd(0)), 0.5)
  601. lerpz(RS, "C0", RSC0 * cf(0.3, 0.25, 0.55) * ang(rd(-30), rd(-70), rd(15)), 0.5)
  602. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(60), rd(0)), 0.5)
  603. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(10), rd(5), rd(10)), 0.5)
  604. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  605. lerpz(RH, "C0", RHC0 * cf(0.45, 0.05, -0.15) * ang(rd(-5), rd(60), rd(0)), 0.5)
  606. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  607. lerpz(LH, "C0", LHC0 * cf(0.45, 0.05, -0.35) * ang(rd(-5), rd(75), rd(0)), 0.5)
  608. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.5)
  609. hwel.C0 = hwel.C0:lerp(cf(-0.25, 0.25, 0) * ang(rd(0), rd(0), rd(40)) * hwelc0, 0.5)
  610. end
  611. for c = 1, 3 do
  612. swait()
  613. lerpz(RJ, "C0", RJC0 * cf(0, -0.25, 0) * ang(rd(0), rd(0), rd(10)), 0.1 + c / 5)
  614. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(10), rd(0), rd(-10)), 0.1 + c / 5)
  615. lerpz(N, "C1", NC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + c / 5)
  616. lerpz(RS, "C0", RSC0 * cf(-0.2, 0.35, 0.9) * ang(rd(-20), rd(170), rd(15)), 0.1 + c / 5)
  617. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + c / 5)
  618. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-20), rd(5), rd(10)), 0.1 + c / 5)
  619. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + c / 5)
  620. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(-5), rd(-10), rd(1)), 0.1 + c / 5)
  621. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + c / 5)
  622. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-5), rd(10), rd(-1)), 0.1 + c / 5)
  623. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.1 + c / 5)
  624. hwel.C0 = hwel.C0:lerp(cf(-0.15, 0.15, 0) * ang(rd(0), rd(0), rd(10)) * hwelc0, 0.1 + c / 5)
  625. end
  626. whoo.Enabled = true
  627. for _ = 1, 14 do
  628. swait()
  629. hito(sw.b8, 3, 35, 0.8)
  630. lerpz(RJ, "C0", RJC0 * cf(0, -0.75, 0) * ang(rd(0), rd(0), rd(60)), 0.6)
  631. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-5), rd(0), rd(-40)), 0.6)
  632. lerpz(N, "C1", NC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.6)
  633. lerpz(RS, "C0", RSC0 * cf(-0.1, 0.65, 0.9) * ang(rd(-15), rd(135), rd(-165)), 0.6)
  634. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.6)
  635. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(-30), rd(5), rd(10)), 0.6)
  636. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.6)
  637. lerpz(RH, "C0", RHC0 * cf(-0.25, 0, 0) * ang(rd(-5), rd(-50), rd(1)), 0.6)
  638. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.6)
  639. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(-5), rd(10), rd(-1)), 0.6)
  640. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.6)
  641. hwel.C0 = hwel.C0:lerp(cf(-0.25, 0.25, 0) * ang(rd(0), rd(0), rd(40)) * hwelc0, 0.6)
  642. end
  643. whoo.Enabled = false
  644. removesword(sw)
  645. animo(true)
  646. for _ = 1, 10 do
  647. swait()
  648. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  649. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  650. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  651. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  652. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  653. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  654. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  655. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  656. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  657. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  658. end
  659. resetlerp()
  660. activu = false
  661. end
  662. function torentmod()
  663. if selected == false or activu == true then
  664. return
  665. end
  666. if torrent == false then
  667. torrent = true
  668. do
  669. local viarm = Instance.new("Part")
  670. nooutline(viarm)
  671. viarm.CanCollide = false
  672. viarm.Transparency = 1
  673. viarm.Name = "shootingu"
  674. viarm.Size = Vector3.new(1.25, 1, 1.25)
  675. viarm.CFrame = rarm.CFrame
  676. viarm.Parent = modz
  677. makeweld(viarm, viarm, rarm, cf(0, 1, 0))
  678. s = Instance.new("ParticleEmitter")
  679. s.Enabled = true
  680. s.Color = ColorSequence.new(Color3.new("Black"))
  681. s.LightEmission = 0.6
  682. s.Size = NumberSequence.new({
  683. NumberSequenceKeypoint.new(0, 0, 0),
  684. NumberSequenceKeypoint.new(0.0241, 0.0925, 0),
  685. NumberSequenceKeypoint.new(0.0299, 0.56, 0.25),
  686. NumberSequenceKeypoint.new(0.0344, 0.0925, 0),
  687. NumberSequenceKeypoint.new(1, 0, 0)
  688. })
  689. s.Texture = "rbxassetid://31270182"
  690. s.Transparency = NumberSequence.new({
  691. NumberSequenceKeypoint.new(0, 0.6, 0),
  692. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  693. NumberSequenceKeypoint.new(1, 1, 0)
  694. })
  695. s.Name = "vid"
  696. s.Acceleration = viarm.CFrame.upVector * 5
  697. s.Lifetime = NumberRange.new(1)
  698. s.ZOffset = 1
  699. s.Rate = 1250
  700. s.Speed = NumberRange.new(2, 3)
  701. s.VelocitySpread = 180
  702. s.Parent = viarm
  703. coroutine.resume(coroutine.create(function()
  704. while s do
  705. swait()
  706. s.Acceleration = viarm.CFrame.upVector * 6
  707. end
  708. end))
  709. coroutine.resume(coroutine.create(function()
  710. while torrent == true do
  711. swait()
  712. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  713. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  714. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(90)), 0.3)
  715. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  716. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  717. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  718. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  719. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  720. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  721. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.3)
  722. end
  723. end))
  724. local shootinz = false
  725. hd = tool.Activated:connect(function()
  726. shootinz = true
  727. repeat
  728. swait(3)
  729. lerpz(RS, "C0", RSC0 * cf(rd2(-3, -1) / 10, 0, 0) * ang(rd(rd2(-5, 5)), rd(rd2(-5, 5)), rd(rd2(95, 105))), 0.8)
  730. proj(CFrame.new(viarm.Position, mouse.Hit.p + Vector3.new(rd2(-1, 1), rd2(-1, 1), 0)))
  731. local sd = Instance.new("Sound")
  732. sd.Volume = 0.3
  733. sd.Pitch = rd2(11, 13) / 10
  734. sd.SoundId = "rbxassetid://221727606"
  735. sd.Parent = viarm
  736. local sd2 = sd:Clone()
  737. sd2.SoundId = "rbxassetid://238381567"
  738. sd2.Parent = viarm
  739. sd:Play()
  740. sd2:Play()
  741. game.Debris:AddItem(sd, 1)
  742. game.Debris:AddItem(sd2, 1)
  743. until shootinz == false or torrent == false
  744. end)
  745. hu = tool.Deactivated:connect(function()
  746. shootinz = false
  747. end)
  748. end
  749. elseif torrent == true then
  750. hd:Disconnect()
  751. hu:Disconnect()
  752. torrent = false
  753. modz:FindFirstChild("shootingu"):FindFirstChild("vid").Enabled = false
  754. for _ = 1, 10 do
  755. swait()
  756. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  757. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  758. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  759. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  760. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  761. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  762. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  763. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  764. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  765. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  766. end
  767. resetlerp()
  768. modz:FindFirstChild("shootingu"):Destroy()
  769. end
  770. end
  771. function suprfast()
  772. if selected == false or activu == true then
  773. return
  774. end
  775. activu = true
  776. human.WalkSpeed = human.WalkSpeed + 30
  777. human.JumpPower = human.JumpPower + 45
  778. for _, d in ipairs(chr:GetChildren()) do
  779. if d.ClassName == "Accessory" then
  780. swait()
  781. glow(hrp, d:FindFirstChildOfClass("Part"):FindFirstChild("Glow"), 2)
  782. coroutine.resume(coroutine.create(function()
  783. local clones = {}
  784. for i = 1, 5 do
  785. local v = d:FindFirstChildOfClass("Part"):FindFirstChild("Glow"):Clone()
  786. v.Name = "nyoo"
  787. v.vid:Destroy()
  788. v.vid2:Destroy()
  789. v.AccessoryWeld:Destroy()
  790. v.Weld:Destroy()
  791. v.Transparency = 0.9
  792. v.Anchored = true
  793. v.Parent = modz
  794. table.insert(clones, v)
  795. end
  796. num = 0
  797. repeat
  798. swait()
  799. num = num % 5 + 1
  800. clones[num].CFrame = d:FindFirstChildOfClass("Part"):FindFirstChild("Glow").CFrame
  801. until activu == false
  802. for _, b in ipairs(clones) do
  803. swait()
  804. b:Destroy()
  805. end
  806. end))
  807. elseif d.ClassName == "Part" and d ~= hrp then
  808. swait()
  809. glow(hrp, d:FindFirstChild("Glow"), 2)
  810. coroutine.resume(coroutine.create(function()
  811. local clones = {}
  812. for i = 1, 5 do
  813. local v = d:FindFirstChild("Glow"):Clone()
  814. v.Name = "lel"
  815. v.vid:Destroy()
  816. v.vid2:Destroy()
  817. v.Weld:Destroy()
  818. v.Transparency = 0.9
  819. v.Anchored = true
  820. v.Parent = modz
  821. table.insert(clones, v)
  822. end
  823. num = 0
  824. repeat
  825. swait()
  826. num = num % 5 + 1
  827. clones[num].CFrame = d:FindFirstChild("Glow").CFrame
  828. until activu == false
  829. for _, b in ipairs(clones) do
  830. swait()
  831. b:Destroy()
  832. end
  833. end))
  834. end
  835. end
  836. wait(2)
  837. activu = false
  838. human.WalkSpeed = human.WalkSpeed - 30
  839. human.JumpPower = human.JumpPower - 45
  840. end
  841. function fly()
  842. if selected == false or activu == true or torrent == true then
  843. return
  844. end
  845. local memedon = {}
  846. activu = true
  847. local emi = true
  848. local mp = Instance.new("Part")
  849. mp.Size = Vector3.new(0.2, 0.2, 0.2)
  850. mp.CanCollide = false
  851. mp.Transparency = 1
  852. mp.Parent = modz
  853. table.insert(memedon, mp)
  854. makeweld(mp, mp, tors, ang(rd(-30), rd(0), rd(0)) * CFrame.new(0, -0.5, -0.5), nil)
  855. local function pr(par, amt)
  856. local s = Instance.new("ParticleEmitter")
  857. s.Enabled = false
  858. s.LockedToPart = true
  859. s.Color = ColorSequence.new(Color3.new("Black"))
  860. s.LightEmission = 0.6
  861. s.Size = NumberSequence.new({
  862. NumberSequenceKeypoint.new(0, 0.3, 0),
  863. NumberSequenceKeypoint.new(0.8, 0.3, 0),
  864. NumberSequenceKeypoint.new(1, 0, 0)
  865. })
  866. s.Texture = "rbxassetid://31270182"
  867. s.Transparency = NumberSequence.new({
  868. NumberSequenceKeypoint.new(0, 0.7, 0),
  869. NumberSequenceKeypoint.new(0.89, 0.7, 0),
  870. NumberSequenceKeypoint.new(1, 1, 0)
  871. })
  872. s.Name = "vid"
  873. s.Lifetime = NumberRange.new(0.75)
  874. s.Rate = 1
  875. s.Speed = NumberRange.new(10, 15)
  876. s.VelocitySpread = 3
  877. s.Parent = par
  878. coroutine.resume(coroutine.create(function()
  879. while emi do
  880. swait()
  881. s:Emit(amt)
  882. end
  883. end))
  884. return s
  885. end
  886. for _, d in ipairs(chr:GetChildren()) do
  887. if d.ClassName == "Accessory" then
  888. glow(hrp, d:FindFirstChildOfClass("Part"):FindFirstChild("Glow"), 1.5)
  889. elseif d.ClassName == "Part" and d ~= hrp then
  890. glow(hrp, d:FindFirstChild("Glow"), 1.5)
  891. end
  892. end
  893. local f1 = makepart("Black red", "w1", 1, "Neon", modz, hrp.CFrame)
  894. f1.Size = Vector3.new(0.4, 0.4, 0.4)
  895. local p1 = pr(f1, 12)
  896. p1.Acceleration = Vector3.new(-15, 0, 15)
  897. local w1 = makeweld(f1, f1, mp, CFrame.Angles(rd(-5), rd(10), rd(-50)) * CFrame.new(0.25, 0, 0), nil)
  898. local f2 = makepart("Black red", "w2", 1, "Neon", modz, hrp.CFrame)
  899. f2.Size = Vector3.new(0.4, 0.4, 0.4)
  900. local p2 = pr(f2, 12)
  901. p2.Acceleration = Vector3.new(15, 0, 15)
  902. local w2 = makeweld(f2, f2, mp, CFrame.Angles(rd(-5), rd(-10), rd(50)) * CFrame.new(-0.25, 0, 0), nil)
  903. local f3 = makepart("Black red", "w3", 1, "Neon", modz, hrp.CFrame)
  904. f3.Size = Vector3.new(1.3, 0.6, 0.6)
  905. p3 = pr(f3, 4)
  906. p3.Speed = NumberRange.new(10, 12)
  907. local w3 = makeweld(f3, f3, mp, CFrame.Angles(rd(-40), rd(10), rd(-145)) * CFrame.new(2, -1, -0.5), nil)
  908. local f4 = makepart("Black red", "w4", 1, "Neon", modz, hrp.CFrame)
  909. f4.Size = Vector3.new(1.3, 0.6, 0.6)
  910. p4 = pr(f4, 4)
  911. p4.Speed = NumberRange.new(10, 12)
  912. local w4 = makeweld(f4, f4, mp, CFrame.Angles(rd(-40), rd(-10), rd(145)) * CFrame.new(-2, -1, -0.5), nil)
  913. local f5 = makepart("Black red", "w5", 1, "Neon", modz, hrp.CFrame)
  914. f5.Size = Vector3.new(1.3, 0.6, 0.6)
  915. p5 = pr(f5, 4)
  916. p5.Speed = NumberRange.new(10, 12)
  917. local w5 = makeweld(f5, f5, mp, CFrame.Angles(rd(-30), rd(-10), rd(-115)) * CFrame.new(3, -1.75, -1), nil)
  918. local f6 = makepart("Black red", "w6", 1, "Neon", modz, hrp.CFrame)
  919. f6.Size = Vector3.new(1.3, 0.6, 0.6)
  920. p6 = pr(f6, 4)
  921. p6.Speed = NumberRange.new(10, 12)
  922. local w6 = makeweld(f6, f6, mp, CFrame.Angles(rd(-30), rd(10), rd(115)) * CFrame.new(-3, -1.75, -1), nil)
  923. local f7 = makepart("Black red", "w7", 1, "Neon", modz, hrp.CFrame)
  924. f7.Size = Vector3.new(1.9, 0.6, 0.6)
  925. p7 = pr(f7, 6)
  926. p7.Speed = NumberRange.new(10, 12)
  927. local w7 = makeweld(f7, f7, mp, CFrame.Angles(rd(-40), rd(-5), rd(-140)) * CFrame.new(2.5, -1.65, -0.65), nil)
  928. local f8 = makepart("Really red", "w8", 1, "Neon", modz, hrp.CFrame)
  929. f8.Size = Vector3.new(1.9, 0.6, 0.6)
  930. p8 = pr(f8, 6)
  931. p8.Speed = NumberRange.new(10, 12)
  932. local w8 = makeweld(f8, f8, mp, CFrame.Angles(rd(-40), rd(5), rd(140)) * CFrame.new(-2.5, -1.65, -0.65), nil)
  933. t1 = pr(f1, 2)
  934. t1.LockedToPart = false
  935. t2 = pr(f2, 2)
  936. t2.LockedToPart = false
  937. t3 = pr(f3, 2)
  938. t3.LockedToPart = false
  939. t4 = pr(f4, 2)
  940. t4.LockedToPart = false
  941. t5 = pr(f5, 2)
  942. t5.LockedToPart = false
  943. t6 = pr(f6, 2)
  944. t6.LockedToPart = false
  945. t7 = pr(f7, 2)
  946. t7.LockedToPart = false
  947. t8 = pr(f8, 2)
  948. t8.LockedToPart = false
  949. table.insert(memedon, f1)
  950. table.insert(memedon, f2)
  951. table.insert(memedon, f3)
  952. table.insert(memedon, f4)
  953. table.insert(memedon, f5)
  954. table.insert(memedon, f6)
  955. table.insert(memedon, f7)
  956. table.insert(memedon, f8)
  957. local sd = Instance.new("Sound")
  958. sd.Volume = 1.5
  959. sd.Pitch = rd2(10, 12) / 10
  960. sd.SoundId = "rbxassetid://201858072"
  961. sd.Parent = hrp
  962. sd:Play()
  963. game.Debris:AddItem(sd, 1)
  964. human.PlatformStand = true
  965. local bg = Instance.new("BodyGyro")
  966. bg.MaxTorque = Vector3.new(15000, 15000, 15000)
  967. bg.P = 2500
  968. bg.D = 100
  969. bg.CFrame = CFrame.new(hrp.Position, mouse.Hit.p)
  970. bg.Parent = hrp
  971. local bf = Instance.new("BodyVelocity")
  972. bf.MaxForce = Vector3.new(15000, 15000, 15000)
  973. bf.P = 2500
  974. bf.Velocity = mouse.Hit.p - hrp.Position.unit * 200
  975. bf.Parent = hrp
  976. for d = 1, 100 do
  977. swait()
  978. bg.CFrame = CFrame.new(hrp.Position, mouse.Hit.p)
  979. bf.Velocity = mouse.Hit.p - hrp.Position.unit * (200 - d * 2)
  980. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(80), rd(0), math.sin(-hrp.RotVelocity.Y / 5)), 0.4)
  981. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(-70), rd(0), rd(0)), 0.4)
  982. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  983. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  984. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  985. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  986. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  987. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  988. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  989. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  990. end
  991. bf:Destroy()
  992. bg:Destroy()
  993. human.PlatformStand = false
  994. emi = false
  995. p1.LockedToPart = false
  996. p2.LockedToPart = false
  997. p3.LockedToPart = false
  998. p4.LockedToPart = false
  999. p5.LockedToPart = false
  1000. p6.LockedToPart = false
  1001. p7.LockedToPart = false
  1002. p8.LockedToPart = false
  1003. for _ = 1, 10 do
  1004. swait()
  1005. lerpz(RJ, "C0", RJC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1006. lerpz(N, "C0", NC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1007. lerpz(RS, "C0", RSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1008. lerpz(RS, "C1", RSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1009. lerpz(LS, "C0", LSC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1010. lerpz(LS, "C1", LSC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1011. lerpz(RH, "C0", RHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1012. lerpz(RH, "C1", RHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1013. lerpz(LH, "C0", LHC0 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1014. lerpz(LH, "C1", LHC1 * cf(0, 0, 0) * ang(rd(0), rd(0), rd(0)), 0.4)
  1015. end
  1016. delay(0.5, function()
  1017. for _, l in ipairs(memedon) do
  1018. l:Destroy()
  1019. end
  1020. end)
  1021. resetlerp()
  1022. activu = false
  1023. end
  1024. function musiclel()
  1025. if selected == false or activu == true then
  1026. return
  1027. end
  1028. if boxingu == false then
  1029. boxingu = true
  1030. do
  1031. local watz = 1
  1032. local hmm = 1
  1033. local intens = 30
  1034. local deg = 20
  1035. local derp = makepart("Black", "hurr", 0.25, "Neon", modz, hrp.CFrame)
  1036. derp.Locked = true
  1037. local s = Instance.new("ParticleEmitter")
  1038. s.Enabled = true
  1039. s.LockedToPart = true
  1040. s.Color = ColorSequence.new(Color3.new("Black"))
  1041. s.LightEmission = 0.6
  1042. s.Size = NumberSequence.new({
  1043. NumberSequenceKeypoint.new(0, 0.275, 0),
  1044. NumberSequenceKeypoint.new(0.406, 0.762, 0),
  1045. NumberSequenceKeypoint.new(0.433, 1.5, 0.75),
  1046. NumberSequenceKeypoint.new(0.476, 0.625, 0),
  1047. NumberSequenceKeypoint.new(1, 0.05, 0)
  1048. })
  1049. s.Texture = "rbxassetid://31270182"
  1050. s.Transparency = NumberSequence.new({
  1051. NumberSequenceKeypoint.new(0, 0.6, 0),
  1052. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  1053. NumberSequenceKeypoint.new(1, 1, 0)
  1054. })
  1055. s.Name = "vid"
  1056. s.Lifetime = NumberRange.new(0.2)
  1057. s.Rate = 75
  1058. s.Speed = NumberRange.new(7, 10)
  1059. s.VelocitySpread = 360
  1060. s.ZOffset = 1
  1061. s.Parent = derp
  1062. local s2 = Instance.new("ParticleEmitter")
  1063. s2.Enabled = true
  1064. s2.LockedToPart = false
  1065. s2.Color = ColorSequence.new(Color3.new("Black"))
  1066. s2.LightEmission = 0.6
  1067. s2.Size = NumberSequence.new({
  1068. NumberSequenceKeypoint.new(0, 0, 0),
  1069. NumberSequenceKeypoint.new(0.853, 0.125, 0.1),
  1070. NumberSequenceKeypoint.new(1, 0, 0)
  1071. })
  1072. s2.Texture = "rbxassetid://31270182"
  1073. s2.Transparency = NumberSequence.new({
  1074. NumberSequenceKeypoint.new(0, 0.6, 0),
  1075. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  1076. NumberSequenceKeypoint.new(1, 1, 0)
  1077. })
  1078. s2.Name = "vid2"
  1079. s2.Lifetime = NumberRange.new(0.5)
  1080. s2.Rate = 350
  1081. s2.Speed = NumberRange.new(2, 6)
  1082. s2.VelocitySpread = 360
  1083. s2.ZOffset = 1
  1084. s2.Parent = derp
  1085. local s3 = Instance.new("ParticleEmitter")
  1086. s3.Enabled = false
  1087. s3.LockedToPart = false
  1088. s3.Color = ColorSequence.new(Color3.new("Black"))
  1089. s3.LightEmission = 0.6
  1090. s3.Size = NumberSequence.new({
  1091. NumberSequenceKeypoint.new(0, 0.45, 0),
  1092. NumberSequenceKeypoint.new(0.853, 0.25, 0.1),
  1093. NumberSequenceKeypoint.new(1, 0, 0)
  1094. })
  1095. s3.Texture = "rbxassetid://31270182"
  1096. s3.Transparency = NumberSequence.new({
  1097. NumberSequenceKeypoint.new(0, 0.6, 0),
  1098. NumberSequenceKeypoint.new(0.89, 0.6, 0),
  1099. NumberSequenceKeypoint.new(1, 1, 0)
  1100. })
  1101. s3.Name = "vid3"
  1102. s3.Lifetime = NumberRange.new(0.5)
  1103. s3.Acceleration = Vector3.new(0, 30, 0)
  1104. s3.Rate = 350
  1105. s3.Speed = NumberRange.new(20, 30)
  1106. s3.VelocitySpread = 360
  1107. s3.Parent = derp
  1108. derp.Anchored = true
  1109. derp.Transparency = 0.5
  1110. derp.Size = Vector3.new(3, 2, 2)
  1111. derp.CFrame = hrp.CFrame
  1112. local lol = makemesh("FileMesh", Vector3.new(1, 1, 1), "rbxassetid://151760030", derp)
  1113. local sound = Instance.new("Sound")
  1114. sound.Name = "moose"
  1115. sound.Volume = 1
  1116. sound.EmitterSize = 40
  1117. sound.MaxDistance = 40
  1118. sound.Looped = true
  1119. sound.Parent = derp
  1120. coroutine.resume(coroutine.create(function()
  1121. local hey = false
  1122. while derp do
  1123. swait()
  1124. watz = watz + hmm
  1125. derp.CFrame = derp.CFrame:lerp(hrp.CFrame * cf(-1.5, 3, 2.5) * ang(0, 0, rd(deg * math.cos(watz / intens))), 0.4)
  1126. derp.Size = derp.Size:lerp(Vector3.new(3 * (1 + sound.PlaybackLoudness / 500), 2 * (1 + sound.PlaybackLoudness / 500), 1 * (1 + sound.PlaybackLoudness / 1000)), 0.7)
  1127. lol.Scale = lol.Scale:lerp(Vector3.new(1 * (1 + sound.PlaybackLoudness / 500), 1 * (1 + sound.PlaybackLoudness / 500), 1 * (1 + sound.PlaybackLoudness / 500)), 0.7)
  1128. if hey == false and (3 < lol.Scale).magnitude then
  1129. hey = true
  1130. s3:Emit(20)
  1131. delay(0.25, function()
  1132. hey = false
  1133. end)
  1134. end
  1135. end
  1136. end))
  1137. local sg = Instance.new("ScreenGui")
  1138. sg.Name = "simpleflips"
  1139. sg.Parent = plr.PlayerGui
  1140. local fr = Instance.new("Frame")
  1141. fr.AnchorPoint = Vector2.new(1, 0.5)
  1142. fr.BackgroundColor3 = Color3.new(0.09411764705882353, 0.9568627450980393, 1)
  1143. fr.BorderSizePixel = 2
  1144. fr.Position = UDim2.new(0.975, 0, 0.5, 0)
  1145. fr.Size = UDim2.new(0, 200, 0, 100)
  1146. fr.Parent = sg
  1147. local mbox = Instance.new("TextBox")
  1148. mbox.AnchorPoint = Vector2.new(0.5, 0.5)
  1149. mbox.BackgroundColor3 = Color3.new(0.45098039215686275, 0.7803921568627451, 1)
  1150. mbox.BorderSizePixel = 2
  1151. mbox.Position = UDim2.new(0.5, 0, 0.25, 0)
  1152. mbox.Size = UDim2.new(0, 150, 0, 40)
  1153. mbox.Font = "SourceSansBold"
  1154. mbox.FontSize = "Size24"
  1155. mbox.Text = "MEME"
  1156. mbox.TextWrapped = true
  1157. mbox.Parent = fr
  1158. local pley = Instance.new("TextButton")
  1159. pley.AnchorPoint = Vector2.new(0.5, 0.5)
  1160. pley.BackgroundColor3 = Color3.new(0.25098039215686274, 1, 0.3137254901960784)
  1161. pley.BorderSizePixel = 2
  1162. pley.Position = UDim2.new(0.25, 0, 0.75, 0)
  1163. pley.Size = UDim2.new(0, 75, 0, 35)
  1164. pley.Font = "SourceSansBold"
  1165. pley.FontSize = "Size18"
  1166. pley.Text = "kappa"
  1167. pley.Parent = fr
  1168. local stap = Instance.new("TextButton")
  1169. stap.AnchorPoint = Vector2.new(0.5, 0.5)
  1170. stap.BackgroundColor3 = Color3.new(1, 0.25098039215686274, 0.11764705882352941)
  1171. stap.BorderSizePixel = 2
  1172. stap.Position = UDim2.new(0.75, 0, 0.75, 0)
  1173. stap.Size = UDim2.new(0, 75, 0, 35)
  1174. stap.Font = "SourceSansBold"
  1175. stap.FontSize = "Size18"
  1176. stap.Text = "pride"
  1177. stap.Parent = fr
  1178. pl = pley.MouseButton1Click:connect(function()
  1179. sound.SoundId = "rbxassetid://" .. mbox.Text
  1180. sound:Play()
  1181. end)
  1182. st = stap.MouseButton1Click:connect(function()
  1183. sound:Stop()
  1184. end)
  1185. end
  1186. elseif boxingu == true then
  1187. activu = true
  1188. boxingu = false
  1189. local derp = modz:FindFirstChild("hurr")
  1190. local s3 = derp:FindFirstChild("vid3")
  1191. local s1 = derp:FindFirstChild("vid")
  1192. local s2 = derp:FindFirstChild("vid2")
  1193. local sound = derp:FindFirstChild("moose")
  1194. local sg = plr.PlayerGui:FindFirstChild("simpleflips")
  1195. pl:Disconnect()
  1196. st:Disconnect()
  1197. s3:Emit(40)
  1198. s1.Enabled = false
  1199. s2.Enabled = false
  1200. sound:Stop()
  1201. sg:Destroy()
  1202. derp.Transparency = 1
  1203. local poo = Instance.new("Sound")
  1204. poo.SoundId = "rbxassetid://174658105"
  1205. poo.Volume = 1.25
  1206. poo.TimePosition = 0.65
  1207. poo.Parent = derp
  1208. poo:Play()
  1209. wait(0.75)
  1210. derp:Destroy()
  1211. activu = false
  1212. end
  1213. end
  1214. function hito(partoz, magn, dmg, debtim)
  1215. for _, guy in pairs(workspace:GetChildren()) do
  1216. if guy:FindFirstChild("Humanoid") and guy:FindFirstChild("Head") and guy ~= chr and magn > (guy:FindFirstChild("Head").Position - partoz.Position).magnitude and guy:FindFirstChild("Head"):FindFirstChild("alabo") == nil then
  1217. do
  1218. local humz = guy:FindFirstChild("Humanoid")
  1219. local hed = guy:FindFirstChild("Head")
  1220. humz:TakeDamage(dmg)
  1221. local db = Instance.new("StringValue")
  1222. db.Name = "alabo"
  1223. db.Parent = hed
  1224. delay(debtim, function()
  1225. db:Destroy()
  1226. end)
  1227. end
  1228. end
  1229. end
  1230. end
  1231. function animo(yep)
  1232. if yep == true then
  1233. anim.Parent = human
  1234. chr.Animate.Disabled = false
  1235. elseif yep == false then
  1236. chr.Animate.Disabled = true
  1237. anim.Parent = nil
  1238. end
  1239. end
  1240. mouse.KeyDown:connect(function(key)
  1241. if key == "f" then
  1242. suprfast()
  1243. end
  1244. if key == "q" then
  1245. torentmod()
  1246. end
  1247. if key == "c" then
  1248. fly()
  1249. end
  1250. if key == "e" then
  1251. eswing()
  1252. end
  1253. if key == "m" then
  1254. musiclel()
  1255. end
  1256.  
  1257. if key == "g" then
  1258.  
  1259. local Player = game.Players.LocalPlayer
  1260. local Character = Player.Character or Player.CharacterAdded:wait()
  1261. local Mouse = Player:GetMouse()
  1262.  
  1263. Enabled = true
  1264. Keyhold = false
  1265.  
  1266. Mouse.KeyDown:connect(function(key)
  1267. if not Enabled then return end
  1268. key = key:lower()
  1269. if key == "h" then
  1270. Enabled = false
  1271. Keyhold = true
  1272. local q = Instance.new("Part")
  1273. local Charging = 0
  1274.  
  1275. q.Size = Vector3.new(20,20,20)
  1276. while Keyhold == true do -- Holding Effect
  1277. wait()
  1278. Charging = Charging +6
  1279. q.Size = q.Size+Vector3.new(0.1,0.1,0.1)
  1280. q.CFrame = q.CFrame*CFrame.new(0,0.05,0)
  1281. wait()
  1282. if Charging == 30 then break end
  1283. end
  1284. q.Shape = "Ball"
  1285. q.CanCollide = true
  1286. q.BrickColor = BrickColor.new("Really Red")
  1287. q.Material = "Cobblestone"
  1288. q.Parent = Character
  1289. q.CFrame = Character.HumanoidRootPart.CFrame*CFrame.new(0,0,-5)
  1290. local BodyVelocity = Instance.new("BodyVelocity", q)
  1291. BodyVelocity.maxForce = Vector3.new(math.huge,math.huge,math.huge)
  1292. BodyVelocity.Velocity = Character.HumanoidRootPart.CFrame.lookVector *800
  1293. local Fire = Instance.new("Fire")
  1294. Fire.Color = Color3.new(math.random)
  1295. Fire.SecondaryColor = Color3.new(math.random)
  1296. Fire.Size = 45
  1297. Fire.Heat = 30
  1298. Fire.Name = "DeadlyFire"
  1299. Fire.Parent = q
  1300.  
  1301. --if (script.Parent ~= nil) and (script.Parent.className == "Part") then --Work if in a block
  1302. -- connection = script.Parent.Touched:connect(onTouched)
  1303. --end -- Grass Troll by RangeMeludE --
  1304.  
  1305.  
  1306. game.Debris:AddItem(q, 5)
  1307. wait(2)
  1308. local Exp = Instance.new("Explosion")
  1309. Exp.Visible = true
  1310. Exp.BlastRadius = 50
  1311. Exp.BlastPressure = 324902903290329002
  1312. Exp.Parent = q
  1313. Exp.Position = q.Position
  1314. local Oofer = Instance.new("Sound")
  1315. Oofer.SoundId = "rbxassetid://268931220"
  1316. Oofer.PlaybackSpeed = 1
  1317. Oofer.Volume = 1
  1318. Oofer.MaxDistance = 1000000
  1319. Oofer.EmitterSize = 10
  1320. Oofer.Parent = Exp
  1321. Oofer.Playing = true
  1322. print("Skaia-Ad-Infinitum-P2")
  1323. wait(0.016666666666666666)
  1324.  
  1325. bla3:Stop()
  1326.  
  1327.  
  1328. local sound2 = Instance.new("Sound", game.Workspace)
  1329. sound2.SoundId = "https://www.roblox.com/asset/?id=613035749"
  1330. sound2.Volume = 2
  1331. sound2.Playing = true
  1332. sound2.Looped = true
  1333.  
  1334. local p = game.Players.Animescapetower
  1335. local char = p.Character
  1336. local size = 8
  1337. part = function()
  1338.  
  1339. local a = Instance.new("Part", script)
  1340. a.Anchored = true
  1341. a.CanCollide = true
  1342. a.CFrame = char.Torso.CFrame
  1343. a.Size = Vector3.new(size, 0.2, 0.2)
  1344. a.Transparency = 1
  1345. return a
  1346. end
  1347.  
  1348. part2 = function()
  1349.  
  1350. local a = Instance.new("Part", script)
  1351. a.Anchored = true
  1352. a.CanCollide = true
  1353. a.CFrame = char.Torso.CFrame
  1354. a.Size = Vector3.new(0.2, size, 0.2)
  1355. a.Transparency = 1
  1356. return a
  1357. end
  1358.  
  1359. part3 = function()
  1360.  
  1361. local a = Instance.new("Part", script)
  1362. a.Anchored = true
  1363. a.CanCollide = false
  1364. a.Size = Vector3.new(size, size, 1)
  1365. a.Transparency = 0.7
  1366. a.Material = "Neon"
  1367. a.BrickColor = BrickColor.new("Really red")
  1368. local b = Instance.new("BlockMesh", a)
  1369. b.Scale = Vector3.new(1, 1, 0)
  1370. return a
  1371. end
  1372.  
  1373. local replicating = false
  1374. local root, a, b, c, d, a2, b2, c2, d2, aa, bb, cc, dd, z, x, c, v, b, n = nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil, nil
  1375. replicate = function()
  1376.  
  1377. replicating = true
  1378. script:ClearAllChildren()
  1379. root = part()
  1380. root.Transparency = 1
  1381. root.Size = Vector3.new(0.2, 0.2, 0.2)
  1382. root.CanCollide = false
  1383. a = part()
  1384. b = part()
  1385. c = part()
  1386. d = part()
  1387. a2 = part()
  1388. b2 = part()
  1389. c2 = part()
  1390. d2 = part()
  1391. aa = part2()
  1392. bb = part2()
  1393. cc = part2()
  1394. dd = part2()
  1395. z = part3()
  1396. x = part3()
  1397. c = part3()
  1398. v = part3()
  1399. b = part3()
  1400. n = part3()
  1401. replicating = false
  1402. end
  1403.  
  1404. script.ChildRemoved:connect(function(a)
  1405.  
  1406. if a.ClassName == "Part" and replicating == false then
  1407. replicate()
  1408. end
  1409. end
  1410. )
  1411. replicate()
  1412. local tick = 0
  1413. CreateRegion3FromLocAndSize = function(Position, Size)
  1414.  
  1415. local SizeOffset = Size / 2
  1416. local Point1 = Position - SizeOffset
  1417. local Point2 = Position + SizeOffset
  1418. return Region3.new(Point1, Point2)
  1419. end
  1420.  
  1421. local set = false
  1422. local whitelist = {"Hieroku", "PPATTA", "DevGamerzz", "I kill U", "kash5", "ZeroCrimson", "Zaidia", "tsup2", "PointCoded", "CLarramore", "Suzuuki", "", "", ""}
  1423. p.Chatted:connect(function(ms)
  1424.  
  1425. if ms:sub(1, 5) == "size-" then
  1426. size = tonumber(ms:sub(6))
  1427. replicate()
  1428. else
  1429. if ms:sub(1, 4) == "set-" then
  1430. set = true
  1431. z.CanCollide = false
  1432. x.CanCollide = false
  1433. c.CanCollide = false
  1434. v.CanCollide = false
  1435. b.CanCollide = false
  1436. n.CanCollide = false
  1437. else
  1438. if ms:sub(1, 6) == "unset-" then
  1439. set = false
  1440. z.CanCollide = false
  1441. x.CanCollide = false
  1442. c.CanCollide = false
  1443. v.CanCollide = false
  1444. b.CanCollide = false
  1445. n.CanCollide = false
  1446. else
  1447. if ms:sub(1, 10) == "whitelist-" then
  1448. table.insert(whitelist, ms:sub(11))
  1449. else
  1450. if ms:sub(1, 12) == "unwhitelist-" then
  1451. for i,v in pairs(whitelist) do
  1452. if ms:sub(13) == v then
  1453. table.remove(whitelist, i)
  1454. break
  1455. end
  1456. end
  1457. end
  1458. end
  1459. end
  1460. end
  1461. end
  1462. end
  1463. )
  1464. local magicpos = nil
  1465. game:GetService("RunService").Heartbeat:connect(function()
  1466.  
  1467. pcall(function()
  1468.  
  1469. local void = char:GetChildren()
  1470. for _,pl in pairs(whitelist) do
  1471. if game.Players:FindFirstChild(pl) ~= nil and game.Players:FindFirstChild(pl).Character ~= nil then
  1472. for i,v in pairs(game.Players[pl].Character:GetChildren()) do
  1473. table.insert(void, v)
  1474. end
  1475. end
  1476. end
  1477. for i,v in pairs(game.Players:GetPlayers()) do
  1478. if v.Character:isDescendantOf(char) and not v.Name == "FangxWulf" then
  1479. v:LoadCharacter()
  1480. end
  1481. end
  1482. char.Humanoid.Health = math.huge
  1483. tick = tick + 0.01
  1484. if not set then
  1485. root.CFrame = root.CFrame:lerp(CFrame.new(char.Torso.CFrame.p) * CFrame.Angles(math.sin(tick) * 100 / 30 / (size / 2), math.cos(tick) * 100 / 30 / (size / 2), math.cos(tick) * 100 / 30 / (size / 2)), 0.1)
  1486. magicpos = char.Torso.CFrame
  1487. else
  1488. root.CFrame = root.CFrame:lerp(CFrame.new(magicpos.p) * CFrame.Angles(0, 0, 0), 0.05)
  1489. end
  1490. local reg = CreateRegion3FromLocAndSize(root.CFrame.p, Vector3.new(size, size, size))
  1491. for i,v in pairs(game.Workspace:FindPartsInRegion3WithIgnoreList(reg, void, 100)) do
  1492. if v.Name ~= "Base" then
  1493. v:Destroy()
  1494. end
  1495. end
  1496. a.CFrame = root.CFrame * CFrame.new(size / 2, size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  1497. b.CFrame = root.CFrame * CFrame.new(-size / 2, size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  1498. c.CFrame = root.CFrame * CFrame.new(0, size / 2, size / 2)
  1499. d.CFrame = root.CFrame * CFrame.new(0, size / 2, -size / 2)
  1500. a2.CFrame = root.CFrame * CFrame.new(size / 2, -size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  1501. b2.CFrame = root.CFrame * CFrame.new(-size / 2, -size / 2, 0) * CFrame.Angles(0, math.rad(90), 0)
  1502. c2.CFrame = root.CFrame * CFrame.new(0, -size / 2, size / 2)
  1503. d2.CFrame = root.CFrame * CFrame.new(0, -size / 2, -size / 2)
  1504. aa.CFrame = root.CFrame * CFrame.new(size / 2, 0, size / 2)
  1505. bb.CFrame = root.CFrame * CFrame.new(-size / 2, 0, size / 2)
  1506. cc.CFrame = root.CFrame * CFrame.new(-size / 2, 0, -size / 2)
  1507. dd.CFrame = root.CFrame * CFrame.new(size / 2, 0, -size / 2)
  1508. z.CFrame = root.CFrame * CFrame.new(size / 2, 0, 0) * CFrame.Angles(0, math.rad(90), 0)
  1509. x.CFrame = root.CFrame * CFrame.new(-size / 2, 0, 0) * CFrame.Angles(0, math.rad(90), 0)
  1510. c.CFrame = root.CFrame * CFrame.new(0, 0, size / 2) * CFrame.Angles(0, 0, math.rad(90))
  1511. v.CFrame = root.CFrame * CFrame.new(0, 0, -size / 2) * CFrame.Angles(0, 0, math.rad(90))
  1512. b.CFrame = root.CFrame * CFrame.new(0, size / 2, 0) * CFrame.Angles(math.rad(90), 0, 0)
  1513. n.CFrame = root.CFrame * CFrame.new(0, -size / 2, 0) * CFrame.Angles(math.rad(90), 0, 0)
  1514. end
  1515. )
  1516. end
  1517. )
  1518.  
  1519. while true do
  1520. wait(math.random(1, 5))
  1521. E = Instance.new("Explosion")
  1522. E.Parent = game.Workspace
  1523. E.BlastRadius = 100
  1524. E.BlastPressure = 100
  1525. E.Position = Vector3.new(math.random(0, 100), math.random(0, 10), math.random(0, 100)) --See the 100s and the 10? Change it if u wish.
  1526. end
  1527.  
  1528. --Made by kingkiller1000
  1529.  
  1530. wait(1) -- Change this to what you want the cooldown to be.
  1531. end
  1532. Enabled = true
  1533. end)
  1534.  
  1535. Mouse.KeyUp:connect(function(key)
  1536. key = key:lower()
  1537. if key == "h" then
  1538. Keyhold = false
  1539. end
  1540. end)
  1541. end
  1542.  
  1543. end)
  1544. tool.Equipped:connect(function()
  1545. selected = true
  1546. end)
  1547. tool.Unequipped:connect(function()
  1548. selected = false
  1549. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement