Advertisement
zed_isJayTheLionJR

The immortal killer 3 test

Jun 21st, 2018
178
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. --[[
  2. Controls
  3. Z = Red Spike
  4. X = Red Slash
  5. C = Red Rain
  6. V = Red Boom
  7. --]]
  8. boom = true
  9. player = game.Players.LocalPlayer
  10. char = player.Character
  11. human = char.Humanoid
  12. torso = char.Torso
  13. m=player:GetMouse()
  14. ChatService = game:GetService("Chat")
  15. ChatService:Chat(char.Head ,"You're gonna die sorry.")
  16. local clothes = {}
  17. for _, clothes in pairs (char:GetChildren()) do
  18. if clothes:IsA("Accessory") then
  19. clothes:Remove()
  20. end
  21. if clothes:IsA("Shirt") then
  22. clothes:Remove()
  23. end
  24. if clothes:IsA("Pants") then
  25. clothes:Remove()
  26. end
  27. if clothes:IsA("ShirtGraphic") then
  28. clothes.Graphic = 0
  29. clothes:Remove()
  30. end
  31. end
  32. char.Head.BrickColor = BrickColor.new("White")
  33. torso.BrickColor = BrickColor.new("Really black")
  34. char["Left Leg"].BrickColor = BrickColor.new("White")
  35. char["Left Arm"].BrickColor = BrickColor.new("Crimson")
  36. char["Right Leg"].BrickColor = BrickColor.new("White")
  37. char["Right Arm"].BrickColor = BrickColor.new("Really red")
  38. char.Head.Material = "Neon"
  39. torso.Material = "Neon"
  40. char["Left Leg"].Material = "Neon"
  41. char["Left Arm"].Material = "Neon"
  42. char["Right Leg"].Material = "Neon"
  43. char["Right Arm"].Material = "Neon"
  44. human.MaxHealth = 90000000009999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999999
  45. wait(0.5)
  46. human.Health = human.MaxHealth
  47. human.WalkSpeed = 100
  48. ---------------------------------------------------------------------------------------------------------
  49. m.KeyDown:connect(function(key)
  50. if key == "f" then
  51. torso.CFrame = m.hit
  52. end
  53. end)
  54. ---------------------------------------------------------------------------------------------------------
  55. m.KeyDown:connect(function(key)
  56. if key == "z" then
  57. ChatService:Chat(char.Head ,"IDEK")
  58. local pos = m.Hit.p
  59. local pos1 = torso.Position
  60. torso.CFrame = CFrame.new(pos1, pos)
  61. x = Instance.new("Part", char)
  62. x.Shape = "Ball"
  63. x.Size = Vector3.new(4,4,4)
  64. x.Material = "Neon"
  65. x.BrickColor = BrickColor.new("Really black")
  66. x.Anchored = false
  67. x.CanCollide = false
  68. x.CFrame = char["Torso"].CFrame * CFrame.new(0,0,-2.5)
  69. z = Instance.new("SpecialMesh", x)
  70. z.MeshId = "rbxassetid://477157423"
  71. z.Scale = Vector3.new(1,1,1)
  72. c = Instance.new("BodyVelocity", x)
  73. c.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  74. c.velocity = char.Torso.CFrame.lookVector*180
  75. x.Touched:connect(function(h)
  76. local a = h.Parent
  77. if a.Name ~= player.Name and a.ClassName == "Model" then
  78. for i = 1,10,.4 do
  79. z.Scale = Vector3.new(1 + i*0.8, 1 + i*0.8, 1 + i*0.8)
  80. x.Size = Vector3.new(4 + i*2.3, 4 + i*2.3, 4 + i*2.3)
  81. h.Parent.Torso.Velocity = CFrame.new(char.Torso.Position,h.Parent.Torso.Position).lookVector * 180
  82. end
  83. end
  84. if a.Name ~= player.Name and a.ClassName == "Model" and a:FindFirstChild("Humanoid") ~= nil then
  85. a:FindFirstChild("Humanoid"):TakeDamage(math.huge)
  86. end
  87. end)
  88. game.Debris:AddItem(x,5)
  89. end
  90. end)
  91. ----------------------------------------------------------------------------------------------------------
  92. m.KeyDown:connect(function(key)
  93. if key == "x" then
  94. ChatService:Chat(char.Head ,"Slash")
  95. local pos = m.Hit.p
  96. local pos1 = torso.Position
  97. torso.CFrame = CFrame.new(pos1, pos)
  98. k = Instance.new("Part", workspace)
  99. k.Shape = "Cylinder"
  100. k.Size = Vector3.new(21,3,4)
  101. k.Material = "Neon"
  102. k.BrickColor = BrickColor.new("White")
  103. k.Anchored = false
  104. k.CanCollide = false
  105. k.CFrame = char["Torso"].CFrame * CFrame.new(0,0,-2.5)
  106. j = Instance.new("SpecialMesh", k)
  107. j.MeshType = "Sphere"
  108. j.Scale = Vector3.new(1,1,1)
  109. h = Instance.new("BodyVelocity", k)
  110. h.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  111. h.velocity = char.Torso.CFrame.lookVector*180
  112. k.Touched:connect(function(h)
  113. local a = h.Parent
  114. if a.Name ~= player.Name and a.ClassName == "Model" then
  115. k.Anchored = true
  116. for i = 1,10,.4 do
  117. j.Scale = Vector3.new(1 + i*0.8, 1 + i*0.8, 1 + i*0.8)
  118. h.Parent.Torso.Velocity = CFrame.new(char.Torso.Position,h.Parent.Torso.Position).lookVector * 180
  119. end
  120. end
  121. if a.Name ~= player.Name and a.ClassName == "Model" and a:FindFirstChild("Humanoid") ~= nil then
  122. a:FindFirstChild("Humanoid"):TakeDamage(math.huge)
  123. end
  124. end)
  125. game.Debris:AddItem(k,5)
  126. end
  127. end)
  128. ----------------------------------------------------------------------------------------------------------
  129. m.KeyDown:connect(function(key)
  130. if key == "c" and boom == true then boom = false
  131. ChatService:Chat(char.Head ,"Get Ready..")
  132. char.Humanoid.JumpPower = 150
  133. char.Humanoid.Jump = true
  134. wait(1)
  135. torso.Anchored = true
  136. torso.CFrame = torso.CFrame * CFrame.Angles(math.rad(-90), math.rad(0), math.rad(0))
  137. ChatService:Chat(char.Head ,"demon Rain!!")
  138. for i = 1,100 do
  139. local g = Instance.new("Part", workspace)
  140. g.Transparency = 0.1
  141. g.Name = "lalala"
  142. g.FormFactor = "Custom"
  143. g.Anchored = false
  144. g.CanCollide = false
  145. g.BrickColor = BrickColor.new("Really black")
  146. g.Shape = "Ball"
  147. g.Size = Vector3.new(15,15,15)
  148. g.Material = "Neon"
  149. g.TopSurface = 0
  150. g.BottomSurface = 0
  151. local y = Instance.new("BodyVelocity", g)
  152. y.maxForce = Vector3.new(math.huge, math.huge, math.huge)
  153. y.velocity = char.Torso.CFrame.lookVector*180
  154. g.CFrame = torso.CFrame*CFrame.new(math.random(-30,30),math.random(-30,30),math.random(-20,-10))* CFrame.Angles(0, 0, 0)
  155. local c = Instance.new("SpecialMesh",g)
  156. c.MeshType = "Sphere"
  157. c.Scale = Vector3.new(1,1,1)
  158. for i = 1,2 do
  159. c.Scale = c.Scale +Vector3.new(0,0,0)
  160. wait(0.0005)
  161. end
  162. g.Touched:connect(function(h)
  163. local a = h.Parent
  164. if a.Name ~= player.Name and a.ClassName == "Model" then
  165. g.Anchored = true
  166. for i = 1,10,.4 do
  167. c.Scale = Vector3.new(1 + i*0.4, 1 + i*0.4, 1 + i*0.4)
  168. h.Parent.Torso.Velocity = CFrame.new(char.Torso.Position,h.Parent.Torso.Position).lookVector * 180
  169. end
  170. end
  171. if a.Name ~= player.Name and a.ClassName == "Model" and a:FindFirstChild("Humanoid") ~= nil then
  172. a:FindFirstChild("Humanoid"):TakeDamage(math.huge)
  173. end
  174. end)
  175. game.Debris:AddItem(g,5)
  176. end
  177. torso.Anchored = false
  178. boom = true
  179. end
  180. end)
  181. ----------------------------------------------------------------------------------------------------------------------------
  182. m.KeyDown:connect(function(key)
  183. if key == "v" and boom == true then boom = false
  184. ChatService:Chat(char.Head ,"Grrrrr..")
  185. wait(1)
  186. ChatService:Chat(char.Head ,"Let There Be LIGHT!!")
  187. local pos = m.Hit.p
  188. local pos1 = torso.Position
  189. torso.CFrame = CFrame.new(pos1, pos)
  190. local qeqe = Instance.new("Part", char)
  191. qeqe.Anchored = false
  192. qeqe.BrickColor = BrickColor.new("White")
  193. qeqe.CanCollide = false
  194. qeqe.Name = "Boom"
  195. qeqe.Shape = "Block"
  196. qeqe.Size = Vector3.new(100, 100, 100)
  197. qeqe.Transparency = 0.5
  198. qeqe.TopSurface = 0
  199. qeqe.BottomSurface = 0
  200. qeqe.Material = "Neon"
  201. qeqe.CFrame = char["Torso"].CFrame * CFrame.new(0,0,-2.5)
  202. awd = Instance.new("BodyVelocity", qeqe)
  203. awd.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  204. awd.velocity = char.Torso.CFrame.lookVector*360
  205. qeqe.Touched:connect(function(h)
  206. local a = h.Parent
  207. if a.Name ~= player.Name and a.ClassName == "Model" and a:FindFirstChild("Humanoid") ~= nil then
  208. h.Parent.Torso.Velocity = CFrame.new(char.Torso.Position,h.Parent.Torso.Position).lookVector * 900
  209. wait(0.2)
  210. a:FindFirstChild("Humanoid"):TakeDamage(math.huge)
  211. qeqe.Transparency = 1
  212. ChatService:Chat(char.Head ,"Light Gone now D:"
  213. end)
  214. game.Debris:AddItem(qeqe,5)
  215. boom = true
  216. end
  217. end)
  218. ----------------------------------------------------------------------------------------------------------------------------
  219. while true do
  220. wait(0.3)
  221. local q = Instance.new("Part", char)
  222. q.Anchored = true
  223. q.BrickColor = BrickColor.new("White")
  224. q.CanCollide = false
  225. q.Name = "Ring"
  226. q.Size = Vector3.new(1, 1, 1)
  227. q.Transparency = 0.6
  228. q.TopSurface = 0
  229. q.BottomSurface = 0
  230. q.CFrame = torso.CFrame * CFrame.new(0,-2,0)
  231. q.CFrame = q.CFrame * CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  232. local e = Instance.new("SpecialMesh", q)
  233. e.MeshId = "http://www.roblox.com/asset/?id=9982590"
  234. e.Scale = Vector3.new(1, 1, 1)
  235. wait(0.1)
  236. coroutine.wrap(function()
  237. for i = 1, 10, .4 do
  238. e.Scale = Vector3.new(1 + i*5, 1 + i*5, 1 + i*2.5)
  239.  
  240. wait()
  241. end
  242. wait()
  243. q:Destroy()
  244. wait()
  245. end)()
  246. end
  247.  
  248. p = game.Players.LocalPlayer
  249. char = p.Character
  250. local char = p.Character
  251. torso = char.Torso
  252. neck = char.Torso.Neck
  253. hum = char.Humanoid
  254. Player = game:GetService("Players").LocalPlayer
  255. Character = Player.Character
  256. tors = Character.Torso
  257. root = Character.HumanoidRootPart
  258. lleg = Character["Left Leg"]
  259. hed = Character.Head
  260. rleg = Character["Right Leg"]
  261. rarm = Character["Right Arm"]
  262. larm = Character["Left Arm"]
  263.  
  264. ypcall(function()
  265. for i,v in pairs(Character:children()) do
  266. if v:IsA("Hat") then
  267. v:Destroy()
  268. end
  269. end
  270. for i,v in pairs(Character:children()) do
  271. if v:IsA("Accessory") then
  272. v:Destroy()
  273. end
  274. end
  275. for i,v in pairs(Character:children()) do
  276. if v:IsA("Hair") then
  277. v:Destroy()
  278. end
  279. end
  280. end)
  281.  
  282. CV="Hot pink"
  283.  
  284. local txt = Instance.new("BillboardGui", char)
  285. txt.Adornee = char .Head
  286. txt.Name = "_status"
  287. txt.Size = UDim2.new(2, 0, 1.2, 0)
  288. txt.StudsOffset = Vector3.new(-9, 8, 0)
  289. local text = Instance.new("TextLabel", txt)
  290. text.Size = UDim2.new(10, 0, 7, 0)
  291. text.FontSize = "Size24"
  292. text.TextScaled = true
  293. text.TextTransparency = 0
  294. text.BackgroundTransparency = 1
  295. text.TextTransparency = 0
  296. text.TextStrokeTransparency = 0
  297. text.Font = "Highway"
  298. text.TextStrokeColor3 = BrickColor.new("Really black").Color
  299.  
  300. v=Instance.new("Part")
  301. v.Name = "ColorBrick"
  302. v.Parent=p.Character
  303. v.FormFactor="Symmetric"
  304. v.Anchored=true
  305. v.CanCollide=false
  306. v.BottomSurface="Smooth"
  307. v.TopSurface="Smooth"
  308. v.Size=Vector3.new(10,5,3)
  309. v.Transparency=1
  310. v.CFrame=char.Torso.CFrame
  311. v.BrickColor=BrickColor.new(CV)
  312. v.Transparency=1
  313. text.TextColor3 = BrickColor.new("Crimson").Color
  314. v.Shape="Block"
  315. text.Text = "The Immortal Killer"
  316.  
  317. hed.face.Texture = "http://www.roblox.com/asset/?id=0"
  318. hed.Transparency = 1
  319. rleg.Transparency = 1
  320. rarm.Transparency = 1
  321. larm.Transparency = 1
  322. lleg.Transparency = 1
  323. tors.Transparency = 1
  324.  
  325. Player = game:GetService("Players").LocalPlayer
  326. Character = Player.Character
  327. rarm = Character["Right Arm"]
  328. larm = Character["Left Arm"]
  329. vt = Vector3.new
  330. bc = BrickColor.new
  331. wit = bc("Smokey grey").Color
  332.  
  333. local prth = Instance.new("Part",Character)
  334. prth.Size = vt(1.25,1.25,1.25)
  335. prth.CanCollide = false
  336. prth.Material = "Neon"
  337. prth.Transparency = 0.5
  338. prth.BrickColor = bc("Smokey grey")
  339. local wldh = Instance.new("Weld",Character)
  340. wldh.Part0 = hed
  341. wldh.Part1 = prth
  342.  
  343. local prtrm = Instance.new("Part",Character)
  344. prtrm.Size = vt(2.1,2.1,1.1)
  345. prtrm.CanCollide = false
  346. prtrm.Transparency = 0.5
  347. prtrm.Material = "Neon"
  348. prtrm.BrickColor = bc("Smokey grey")
  349. local wldm = Instance.new("Weld",Character)
  350. wldm.Part0 = root
  351. wldm.Part1 = prtrm
  352.  
  353. local prtr = Instance.new("Part",Character)
  354. prtr.Size = vt(1.1,2.1,1.1)
  355. prtr.CanCollide = false
  356. prtr.Transparency = 0.5
  357. prtr.Material = "Neon"
  358. prtr.BrickColor = bc("Smokey grey")
  359. local prtrl = Instance.new("Part",Character)
  360. prtrl.Size = vt(1.1,2.1,1.1)
  361. prtrl.CanCollide = false
  362. prtrl.Transparency = 0.5
  363. prtrl.Material = "Neon"
  364. prtrl.BrickColor = bc("Smokey grey")
  365. local eff = Instance.new("ParticleEmitter",prtr)
  366. eff.LightEmission = 1
  367. eff.Texture = "rbxassetid://284205403"
  368. eff.Color = ColorSequence.new(wit)
  369. eff.Size = NumberSequence.new(0.5,1)
  370. eff.Acceleration = vt(0,25,0)
  371. eff.Speed = NumberRange.new(-5)
  372. eff.LockedToPart = false
  373. eff.Transparency = NumberSequence.new(0.95)
  374. eff.Lifetime = NumberRange.new(0.5)
  375. eff.Rate = 100000
  376. eff.VelocitySpread = 25
  377. local wld = Instance.new("Weld",Character)
  378. wld.Part0 = rarm
  379. wld.Part1 = prtr
  380. local wldl = Instance.new("Weld",Character)
  381. wldl.Part0 = rleg
  382. wldl.Part1 = prtrl
  383.  
  384. local prtr2 = Instance.new("Part",Character)
  385. prtr2.Size = vt(1.1,2.1,1.1)
  386. prtr2.CanCollide = false
  387. prtr2.Transparency = 0.5
  388. prtr2.Material = "Neon"
  389. prtr2.BrickColor = bc("Crimson")
  390. local prtrl2 = Instance.new("Part",Character)
  391. prtrl2.Size = vt(1.1,2.1,1.1)
  392. prtrl2.CanCollide = false
  393. prtrl2.Transparency = 0.5
  394. prtrl2.Material = "Neon"
  395. prtrl2.BrickColor = bc("Smokey grey")
  396. local eff2 = Instance.new("ParticleEmitter",prtr2)
  397. eff2.LightEmission = 1
  398. eff2.Texture = "rbxassetid://284205403"
  399. eff2.Color = ColorSequence.new(wit)
  400. eff2.Size = NumberSequence.new(0.5,1)
  401. eff2.Acceleration = vt(0,25,0)
  402. eff2.Speed = NumberRange.new(-5)
  403. eff2.LockedToPart = false
  404. eff2.Transparency = NumberSequence.new(0.95)
  405. eff2.Lifetime = NumberRange.new(0.5)
  406. eff2.Rate = 100000
  407. eff2.VelocitySpread = 25
  408. local wld2 = Instance.new("Weld",Character)
  409. wld2.Part0 = larm
  410. wld2.Part1 = prtr2
  411. local wldl2 = Instance.new("Weld",Character)
  412. wldl2.Part0 = lleg
  413. wldl2.Part1 = prtrl2
  414.  
  415. local mouse = game.Players.LocalPlayer:GetMouse()
  416. tors = game.Players.LocalPlayer.Character.Torso
  417. vt = Vector3.new
  418. bc = BrickColor.new
  419.  
  420. local Effect = Instance.new("Part",game.Lighting)
  421. Effect.BrickColor = bc("Smokey grey")
  422. Effect.Transparency = 1
  423. Effect.Anchored = true
  424. Effect.CanCollide = false
  425. Effect.Material = "Neon"
  426. Effect.Shape = "Ball"
  427. Effect.Size = vt(5,5,5)
  428. local fire1 = Instance.new("Fire",Effect)
  429. fire1.Name = "Fire"
  430. fire1.Heat = 0
  431. fire1.Size = 30
  432. fire1.SecondaryColor = bc("Really black").Color
  433. fire1.Color = bc("Deep orange").Color
  434. local fire2 = Instance.new("Fire",Effect)
  435. fire2.Name = "Fire2"
  436. fire2.Heat = 0
  437. fire2.Size = 25
  438. fire2.SecondaryColor = bc("Really black").Color
  439. fire2.Color = bc("Neon orange").Color
  440.  
  441. function Explode(rad,par)
  442. local expart = Instance.new("Part",script.Parent)
  443. local expart2 = Instance.new("Part",script.Parent)
  444. local snd = Instance.new("Sound",expart)
  445. snd.SoundId = "rbxassetid://258057783"
  446. snd.Volume = 2.5
  447. local partMesh = Instance.new("SpecialMesh",expart)
  448. partMesh.MeshType = "Sphere"
  449. local partMesh2 = Instance.new("SpecialMesh",expart2)
  450. partMesh2.MeshType = "Sphere"
  451. local expld = Instance.new("Explosion", script.Parent)
  452. expld.BlastRadius = rad
  453. expld.Position = par.Position
  454. partMesh.Scale = vt(rad,rad,rad)
  455. expart.Size = vt(1,1,1)*1.5
  456. expart.Transparency = 0.5
  457. expart.Anchored = true
  458. expart.Material = "Neon"
  459. expart.BrickColor = bc("Smokey grey")
  460. expart.CFrame = par.CFrame
  461. partMesh2.Scale = vt(rad,rad,rad)
  462. expart2.Size = vt(1.15,1.15,1.15)*1.5
  463. expart2.Transparency = 0.5
  464. expart2.Anchored = true
  465. expart2.Material = "Neon"
  466. expart2.BrickColor = bc("Bright orange")
  467. expart2.CFrame = par.CFrame
  468. snd:Play()
  469. for i = 0, 100 do
  470. expart.Transparency = expart.Transparency + 0.005
  471. partMesh.Scale = partMesh.Scale + vt(0.25,0.25,0.25)
  472. expart.CFrame = expart.CFrame
  473. expart2.Transparency = expart.Transparency + 0.005
  474. partMesh2.Scale = partMesh2.Scale + vt(0.25,0.25,0.25)
  475. expart2.CFrame = expart.CFrame
  476. wait(0)
  477. end
  478. snd.Parent = nil
  479. expart.Parent = nil
  480. expart2.Parent = nil
  481. expld.Parent = nil
  482. end
  483.  
  484. function Explode2(rad,par)
  485. local expart = Instance.new("Part",script.Parent)
  486. local expart2 = Instance.new("Part",script.Parent)
  487. local snd = Instance.new("Sound",expart)
  488. snd.SoundId = "rbxassetid://165969964"
  489. snd.Volume = 3
  490. local partMesh = Instance.new("SpecialMesh",expart)
  491. partMesh.MeshType = "Sphere"
  492. local partMesh2 = Instance.new("SpecialMesh",expart2)
  493. partMesh2.MeshType = "Sphere"
  494. local expld = Instance.new("Explosion", script.Parent)
  495. expld.BlastRadius = rad
  496. expld.Position = par.Position
  497. partMesh.Scale = vt(rad,rad,rad)
  498. expart.Size = vt(1,1,1)*1.5
  499. expart.Transparency = 0.5
  500. expart.Anchored = true
  501. expart.Material = "Neon"
  502. expart.BrickColor = bc("Smokey grey")
  503. expart.CFrame = par.CFrame
  504. partMesh2.Scale = vt(rad,rad,rad)
  505. expart2.Size = vt(1.15,1.15,1.15)*1.5
  506. expart2.Transparency = 0.5
  507. expart2.Anchored = true
  508. expart2.Material = "Neon"
  509. expart2.BrickColor = bc("Bright orange")
  510. expart2.CFrame = par.CFrame
  511. snd:Play()
  512. for i = 0, 100 do
  513. expart.Transparency = expart.Transparency + 0.005
  514. partMesh.Scale = partMesh.Scale + vt(0.25,0.25,0.25)
  515. expart.CFrame = expart.CFrame
  516. expart2.Transparency = expart.Transparency + 0.005
  517. partMesh2.Scale = partMesh2.Scale + vt(0.25,0.25,0.25)
  518. expart2.CFrame = expart.CFrame
  519. wait(0)
  520. end
  521. snd.Parent = nil
  522. expart.Parent = nil
  523. expart2.Parent = nil
  524. expld.Parent = nil
  525. end
  526.  
  527. mouse.KeyDown:connect(function(k)
  528.  
  529. k = k:lower()
  530. if k == "q" then
  531. local spart = Effect:Clone()
  532. spart.Parent = game.Players.LocalPlayer.Character
  533. spart.Transparency = 0
  534. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*5
  535. wait()
  536. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*15
  537. wait()
  538. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*25
  539. wait()
  540. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*35
  541. wait()
  542. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*45
  543. wait()
  544. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*55
  545. wait()
  546. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*65
  547. wait()
  548. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*75
  549. wait()
  550. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*85
  551. wait()
  552. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*95
  553. wait()
  554. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*105
  555. spart.Transparency = 1
  556. spart.Fire2:Destroy()
  557. spart.Fire:Destroy()
  558. Explode(25,spart)
  559. spart:Destroy()
  560. end
  561. if k == "e" then
  562. local spart = Effect:Clone()
  563. spart.Parent = game.Players.LocalPlayer.Character
  564. spart.Transparency = 0
  565. spart.Anchored = false
  566. spart.Position = game.Players.LocalPlayer.Character.Torso.Position + game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*0
  567. spart.Position = spart.Position + vt(0,100,0)
  568. spart.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*150
  569. wait(1)
  570. spart.Transparency = 1
  571. spart.Fire2:Destroy()
  572. spart.Fire:Destroy()
  573. Explode2(75,spart)
  574. spart:Destroy()
  575. end
  576. if k == "r" then
  577. local ff = Instance.new("ForceField",game.Players.LocalPlayer.Character)
  578. game.Players.LocalPlayer.Character.Torso.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*275
  579. wait(0.75)
  580. game.Players.LocalPlayer.Character.Torso.Velocity = game.Players.LocalPlayer.Character.Torso.CFrame.lookVector*-165
  581. Explode(30,game.Players.LocalPlayer.Character.Torso)
  582. wait(0.5)
  583. ff:Destroy()
  584. end
  585. if k == "f" then
  586. local ff = Instance.new("ForceField",game.Players.LocalPlayer.Character)
  587. for i = 0, 10 do
  588. game.Players.LocalPlayer.Character.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame + Vector3.new(0,10,0)
  589. wait(0)
  590. end
  591. for i = 0, 5 do
  592. game.Players.LocalPlayer.Character.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame + Vector3.new(0,1,0)
  593. wait(0)
  594. end
  595. game.Players.LocalPlayer.Character.Torso.Anchored = true
  596. wait(1.5)
  597. game.Players.LocalPlayer.Character.Torso.Anchored = false
  598. for i = 0, 10 do
  599. game.Players.LocalPlayer.Character.Torso.CFrame = game.Players.LocalPlayer.Character.Torso.CFrame + Vector3.new(0,-1,0)
  600. wait(0)
  601. end
  602. wait(0.25)
  603. Explode2(62.5,game.Players.LocalPlayer.Character.Torso)
  604. wait(0.5)
  605. ff:Destroy()
  606. end
  607. end)
  608. plr = game.Players.LocalPlayer
  609. mouse = plr:GetMouse()
  610. part = nil
  611. bp = nil
  612. particles = nil
  613. function clerp(a,b,c,d)
  614. for i = 0,d,.01 do
  615. a.CFrame = CFrame.new(b:lerp(c,i))
  616. wait()
  617. end
  618. end
  619. function slerp(a2,b2,c2,d2)
  620. for i2 = 0,d2,.01 do
  621. a2.CFrame = CFrame.new(b2:lerp(c2,i2))
  622. wait()
  623. end
  624. end
  625. mouse.KeyDown:connect(function(key)
  626. if key == "e" and plr.Character.Parent == workspace then
  627. plr.Character.Parent = workspace.Camera
  628. plr.Character.Archivable = true
  629. Instance.new("ForceField",plr.Character).Visible = false
  630. for y,t in pairs(plr.Character:GetChildren()) do
  631. if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
  632. t.Transparency = 0.5
  633. if t.Name == "Head" and t:FindFirstChild("face") then
  634. t.face.Transparency = 1
  635. end
  636. elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
  637. t.Handle.Transparency = 1
  638. end
  639. end
  640. elseif key == "z" and plr.Character.Parent == workspace.Camera and part == nil then
  641. plr.Character.Torso.CFrame = CFrame.new(Vector3.new(mouse.hit.p.X,mouse.hit.p.Y+1.5,mouse.hit.p.Z),plr.Character.Torso.CFrame.p)
  642. elseif key == "x" and plr.Character.Parent == workspace.Camera and part == nil then
  643. if plr.Character.Torso.Anchored == true then
  644. for y,t in pairs(plr.Character:GetChildren()) do
  645. if t:IsA("Part") then
  646. t.Anchored = false
  647. end
  648. end
  649. else
  650. for y,t in pairs(plr.Character:GetChildren()) do
  651. if t:IsA("Part") then
  652. t.Anchored = true
  653. end
  654. end
  655. end
  656. elseif key == "c" and plr.Character.Parent == workspace.Camera and part ~= nil then
  657. local clone = part:Clone()
  658. clone.Parent = workspace
  659. clone.Anchored = false
  660. clone:ClearAllChildren()
  661. clone.CanCollide = true
  662. bp.Parent = clone
  663. particles.Parent = clone
  664. if part.Parent:FindFirstChildOfClass("Humanoid") then
  665. part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = false
  666. end
  667. part:Destroy()
  668. part = clone
  669. elseif key == "t" and plr.Character.Parent == workspace.Camera and part == nil then
  670. plr.Character.Parent = workspace
  671. plr.Character.Archivable = false
  672. plr.Character:FindFirstChildOfClass("ForceField"):Remove()
  673. for y,t in pairs(plr.Character:GetChildren()) do
  674. if t:IsA("Part") and t.Name ~= "HumanoidRootPart" then
  675. t.Transparency = 0
  676. if t.Name == "Head" and t:FindFirstChild("face") then
  677. t.face.Transparency = 0
  678. end
  679. elseif t:IsA("Accessory") and t:FindFirstChild("Handle") then
  680. t.Handle.Transparency = 0
  681. end
  682. end
  683. end
  684. end)
  685. mouse.Button1Down:connect(function()
  686. if plr.Character.Parent == workspace.Camera then
  687. if mouse ~= nil then
  688. if mouse.Target ~= nil then
  689. part = mouse.Target
  690. bp = Instance.new("BodyPosition",part)
  691. bp.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  692. bp.Position = part.Position
  693. particles = Instance.new("ParticleEmitter",part)
  694. particles.Color = ColorSequence.new(Color3.new(255, 255, 255))
  695. particles.Size = NumberSequence.new(20)
  696. particles.Texture = "rbxassetid://522606102"
  697. particles.VelocitySpread = 360
  698. particles.Speed = NumberRange.new(0)
  699. particles.RotSpeed = NumberRange.new(0)
  700. particles.Rotation = NumberRange.new(0)
  701. particles.Rate = 250
  702. particles.Lifetime = NumberRange.new(1.5, 3.75)
  703. particles.Transparency = NumberSequence.new({NumberSequenceKeypoint.new(0,1,0),NumberSequenceKeypoint.new(.12,.688,0),NumberSequenceKeypoint.new(.891,.887,0),NumberSequenceKeypoint.new(1,1,0)})
  704. dwn = true
  705. end
  706. end
  707. while dwn == true do
  708. wait()
  709. bp.Position = mouse.hit.p
  710. if part then
  711. if part.Parent:FindFirstChildOfClass("Humanoid") then
  712. part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = true
  713. end
  714. end
  715. end
  716. end
  717. end)
  718. mouse.Button1Up:connect(function()
  719. dwn = false
  720. if part then if part.Parent:FindFirstChildOfClass("Humanoid") then part.Parent:FindFirstChildOfClass("Humanoid").PlatformStand = false end part = nil end
  721. if bp then bp:Destroy() end
  722. if particles then particles:Destroy() end
  723. end)
  724. base = Instance.new("ScreenGui",plr.PlayerGui)
  725. bbg = Instance.new("BillboardGui",plr.Character.Head)
  726. bbg.Size = UDim2.new(0,200,0,50)
  727. bbg.StudsOffset = Vector3.new(0,3,0)
  728. bbgTl = Instance.new("TextLabel",bbg)
  729. bbgTl.BackgroundTransparency = 1
  730. bbgTl.Size = UDim2.new(10,0,1,0)
  731. bbgTl.Position = UDim2.new(-4.5,0,0,0)
  732. bbgTl.Font = "Code"
  733. bbgTl.Text = " "
  734. bbgTl.TextSize = 70
  735. bbgTl.TextStrokeColor3 = Color3.new(1,1,1)
  736. bbgTl.TextColor3 = Color3.new(201,201,201)
  737. bbgTl.TextStrokeTransparency = 0
  738. bbgTl.TextWrapped = true
  739. plr.Chatted:connect(function(msg)
  740. bbgTl.Text = msg
  741. wait(5)
  742. if bbgTl.Text == msg then
  743. bbgTl.Text = " "
  744. end
  745. end)
  746. touchCounter = 0
  747. while wait() do
  748. if plr.Character.Parent == workspace.Camera then
  749. local c = plr.Character:Clone()
  750. c:MakeJoints()
  751. for y,t in pairs(c:GetChildren()) do
  752. if t:IsA("Part") then
  753. t.CanCollide = false
  754. t.Anchored = true
  755. t.Transparency = 0.8
  756. t.TopSurface = "Smooth"
  757. t.BottomSurface = "Smooth"
  758. t.RightSurface = "Smooth"
  759. t.LeftSurface = "Smooth"
  760. t.FrontSurface = "Smooth"
  761. t.BackSurface = "Smooth"
  762. t.BrickColor = BrickColor.new("grey")
  763. if t.Name == "Head" and t:FindFirstChild("face") then
  764. t.face:Remove()
  765. elseif t.Name == "Torso" and t:FindFirstChild("roblox") then
  766. t.roblox:Remove()
  767. elseif t.Name == "HumanoidRootPart" then
  768. t:Remove()
  769. end
  770. else
  771. t:Remove()
  772. end
  773. end
  774. c.Parent = workspace
  775. game.Debris:AddItem(c,.05)
  776. end
  777. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement