Advertisement
-----------------

Chara fe maybe

Jan 24th, 2021
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 79.74 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. local lovecounter = false
  153. local love = 99
  154. local sprint = false
  155. local done = false
  156. local canheal = false
  157. local deathchat1 = false
  158. local once = true
  159. local breakjoints = true
  160. local dead = false
  161. local candie = true
  162. local deathchat = false
  163. local canattack = true
  164. local colorred = 0
  165. local lala = true
  166. local idleon = true
  167. local walking = true
  168. local idle1 = true
  169. local canchange = false
  170. local idle = true
  171. local p = game.Players.LocalPlayer
  172. local char = p.Character
  173. local mouse = p:GetMouse()
  174. local larm = char["Left Arm"]
  175. local rarm = char["Right Arm"]
  176. local lleg = char["Left Leg"]
  177. local rleg = char["Right Leg"]
  178. local hed = char.Head
  179. local torso = char.Torso
  180. local hum = char.Humanoid
  181.  
  182. um = Instance.new("Part",char)
  183. um.Name = "Immune"
  184. um.CanCollide = false
  185. um.Anchored = true
  186. um.Transparency = 1
  187. dead = true
  188. local cam = game.Workspace.CurrentCamera
  189. local root = char.HumanoidRootPart
  190. local deb = false
  191. local shot = 0
  192. local debris=game:service"Debris"
  193. local l = game:GetService("Lighting")
  194. local rs = game:GetService("RunService").RenderStepped
  195. local Create = LoadLibrary("RbxUtility").Create
  196. ff = Instance.new("ForceField",char)
  197. ff.Visible = false
  198. ArtificialHB = Create("BindableEvent", script){
  199. Parent = script,
  200. Name = "Heartbeat",
  201. }
  202. CFuncs = {
  203.  
  204.  
  205. ["Sound"] = {
  206. Create = function(id, par, vol, pit)
  207. coroutine.resume(coroutine.create(function()
  208. local S = Create("Sound"){
  209. Volume = vol,
  210. Pitch = pit or 1,
  211. SoundId = id,
  212. Parent = par or workspace,
  213. }
  214. wait()
  215. S:play()
  216. game:GetService("Debris"):AddItem(S, 6)
  217. end))
  218. end;
  219. };
  220.  
  221.  
  222.  
  223. CreateTemplate = {
  224.  
  225. };
  226. }
  227. function swait(num)
  228. if num == 0 or num == nil then
  229. ArtificialHB.Event:wait()
  230. else
  231. for i = 0, num do
  232. ArtificialHB.Event:wait()
  233. end
  234. end
  235. end
  236. ptz = {0.8, 0.85, 0.9, 0.95, 1, 1.05, 1.1}
  237. function lerp(a, b, t) -- Linear interpolation
  238. return a + (b - a)*t
  239. end
  240.  
  241. function slerp(a, b, t) --Spherical interpolation
  242. dot = a:Dot(b)
  243. if dot > 0.99999 or dot < -0.99999 then
  244. return t <= 0.5 and a or b
  245. else
  246. r = math.acos(dot)
  247. return (a*math.sin((1 - t)*r) + b*math.sin(t*r)) / math.sin(r)
  248. end
  249. end
  250. function matrixInterpolate(a, b, t)
  251. local ax, ay, az, a00, a01, a02, a10, a11, a12, a20, a21, a22 = a:components()
  252. local bx, by, bz, b00, b01, b02, b10, b11, b12, b20, b21, b22 = b:components()
  253. local v0 = lerp(Vector3.new(ax, ay, az), Vector3.new(bx , by , bz), t) -- Position
  254. local v1 = slerp(Vector3.new(a00, a01, a02), Vector3.new(b00, b01, b02), t) -- Vector right
  255. local v2 = slerp(Vector3.new(a10, a11, a12), Vector3.new(b10, b11, b12), t) -- Vector up
  256. local v3 = slerp(Vector3.new(a20, a21, a22), Vector3.new(b20, b21, b22), t) -- Vector back
  257. local t = v1:Dot(v2)
  258. if not (t < 0 or t == 0 or t > 0) then -- Failsafe
  259. return CFrame.new()
  260. end
  261. return CFrame.new(
  262. v0.x, v0.y, v0.z,
  263. v1.x, v1.y, v1.z,
  264. v2.x, v2.y, v2.z,
  265. v3.x, v3.y, v3.z)
  266. end
  267. ----------------------------------------------------
  268. function genWeld(a,b)
  269. local w = Instance.new("Weld",a)
  270. w.Part0 = a
  271. w.Part1 = b
  272. return w
  273. end
  274. function weld(a, b)
  275. local weld = Instance.new("Weld")
  276. weld.Name = "W"
  277. weld.Part0 = a
  278. weld.Part1 = b
  279. weld.C0 = a.CFrame:inverse() * b.CFrame
  280. weld.Parent = a
  281. return weld;
  282. end
  283. ----------------------------------------------------
  284. function Lerp(c1,c2,al)
  285. local com1 = {c1.X,c1.Y,c1.Z,c1:toEulerAnglesXYZ()}
  286. local com2 = {c2.X,c2.Y,c2.Z,c2:toEulerAnglesXYZ()}
  287. for i,v in pairs(com1) do
  288. com1[i] = v+(com2[i]-v)*al
  289. end
  290. return CFrame.new(com1[1],com1[2],com1[3]) * CFrame.Angles(select(4,unpack(com1)))
  291. end
  292. ----------------------------------------------------
  293. newWeld = function(wp0, wp1, wc0x, wc0y, wc0z)
  294. local wld = Instance.new("Weld", wp1)
  295. wld.Part0 = wp0
  296. wld.Part1 = wp1
  297.  
  298. wld.C0 = CFrame.new(wc0x, wc0y, wc0z)
  299. end
  300. ----------------------------------------------------
  301. function weld5(part0, part1, c0, c1)
  302. weeld=Instance.new("Weld", part0)
  303. weeld.Part0=part0
  304. weeld.Part1=part1
  305. weeld.C0=c0
  306. weeld.C1=c1
  307. return weeld
  308. end
  309. ----------------------------------------------------
  310. function HasntTouched(plrname)
  311. local ret = true
  312. for _, v in pairs(Touche) do
  313. if v == plrname then
  314. ret = false
  315. end
  316. end
  317. return ret
  318. end
  319. newWeld(torso, larm, -1.5, 0.5, 0)
  320. larm.Weld.C1 = CFrame.new(0, 0.5, 0)
  321. newWeld(torso, rarm, 1.5, 0.5, 0)
  322. rarm.Weld.C1 = CFrame.new(0, 0.5, 0)
  323. newWeld(torso, hed, 0, 1.5, 0)
  324. newWeld(torso, lleg, -0.5, -1, 0)
  325. lleg.Weld.C1 = CFrame.new(0, 1, 0)
  326. newWeld(torso, rleg, 0.5, -1, 0)
  327. rleg.Weld.C1 = CFrame.new(0, 1, 0)
  328. newWeld(root, torso, 0, -1, 0)
  329. torso.Weld.C1 = CFrame.new(0, -1, 0)
  330.  
  331. function chatfunc(text)
  332. local chat = coroutine.wrap(function()
  333. if char:FindFirstChild("TalkingBillBoard")~= nil then
  334. char:FindFirstChild("TalkingBillBoard"):destroy()
  335. end
  336. local naeeym2 = Instance.new("BillboardGui",char)
  337. naeeym2.Size = UDim2.new(0,100,0,40)
  338. naeeym2.StudsOffset = Vector3.new(0,3,0)
  339. naeeym2.Adornee = hed
  340. naeeym2.Name = "TalkingBillBoard"
  341. local tecks2 = Instance.new("TextLabel",naeeym2)
  342. tecks2.BackgroundTransparency = 1
  343. tecks2.BorderSizePixel = 0
  344. tecks2.Text = ""
  345. tecks2.Font = "Arcade"
  346. tecks2.TextSize = 30
  347. tecks2.TextStrokeTransparency = 0
  348. tecks2.TextColor3 = Color3.new(255,0,0)
  349. tecks2.TextStrokeColor3 = Color3.new(255,0,0)
  350. tecks2.Size = UDim2.new(1,0,0.5,0)
  351.  
  352. for i = 1,string.len(text),1 do
  353. CFuncs["Sound"].Create("http://www.roblox.com/asset/?id=565939471", hed, 6, .8)
  354. tecks2.Text = string.sub(text,1,i)
  355.  
  356. wait(0.01)
  357. end
  358. wait(2)
  359. for i = 1, 50 do
  360. swait()
  361. tecks2.Position = tecks2.Position - UDim2.new(math.random(-.4,.4),math.random(-5,5),.05,math.random(-5,5))
  362. tecks2.Rotation = tecks2.Rotation - .8
  363. tecks2.TextStrokeTransparency = tecks2.TextStrokeTransparency +.04
  364. tecks2.TextTransparency = tecks2.TextTransparency + .04
  365.  
  366. end
  367. naeeym2:Destroy()
  368. end)
  369. chat()
  370. end
  371. function onChatted(msg)
  372. chatfunc(msg)
  373. end
  374. p.Chatted:connect(onChatted)
  375. hed.face.Texture = "http://www.roblox.com/asset/?id=381193106"
  376. ypcall(function()
  377. shirt = Instance.new("Shirt", char)
  378. shirt.Name = "Shirt"
  379. pants = Instance.new("Pants", char)
  380. pants.Name = "Pants"
  381. char.Shirt.ShirtTemplate = "http://www.roblox.com/asset/?id=451644755"
  382. char.Pants.PantsTemplate = "http://www.roblox.com/asset/?id=358183960"
  383. end)
  384. char["Body Colors"].HeadColor = BrickColor.new("Pastel brown")
  385. char["Body Colors"].TorsoColor = BrickColor.new("Pastel brown")
  386. char["Body Colors"].LeftArmColor = BrickColor.new("Pastel brown")
  387. char["Body Colors"].RightArmColor = BrickColor.new("Pastel brown")
  388.  
  389. MegaloStrikesBack = Instance.new("Sound",torso)
  390. MegaloStrikesBack.Looped = true
  391. MegaloStrikesBack.SoundId = "http://www.roblox.com/asset?id=399570826"
  392. MegaloStrikesBack.Volume = 50
  393. MegaloStrikesBack:Play()
  394. for _, v in pairs(char:GetChildren()) do
  395. if v.ClassName == "Accessory" then
  396. v:remove()
  397. end
  398. end
  399. local Hat = char:FindFirstChild("Hat_F") or Instance.new("Hat")
  400. Hat.AttachmentPos = Vector3.new(0, 0.33, 0)
  401. Hat.Name = "Hat_F"
  402. local Handle = Hat:FindFirstChild("Handle") or Instance.new("Part", Hat)
  403. if Handle.Name ~= "Handle" then
  404. Handle.Size = Vector3.new(1, 1, 1)
  405. end
  406. Handle.BottomSurface = 0
  407. Handle.Name = "Handle"
  408. Handle.TopSurface = 0
  409. Handle.Locked = 1
  410. local Mesh = Hat:FindFirstChild("Mesh") or Instance.new("SpecialMesh", Handle)
  411. Mesh.TextureId = "http://www.roblox.com/asset/?id=75975464"
  412. Mesh.MeshId = "http://www.roblox.com/asset/?id=250264520 "
  413. Mesh.Scale = Vector3.new(1.05, 1.05, 1.05)
  414. Hat.Parent = char
  415.  
  416. handle = Instance.new("Part", char)
  417. handle.TopSurface = "Smooth"
  418. handle.BottomSurface = "Smooth"
  419. handle.Material = "Neon"
  420.  
  421. handle.Size = Vector3.new(0.2, 0.5, 0.5)
  422. handle.CanCollide = false
  423.  
  424. handle.FormFactor = "Custom"
  425. local Weldb = Instance.new("Weld", char)
  426. Weldb.Part0 = char["Right Arm"]
  427. Weldb.Part1 = handle
  428. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  429. local KnifeMesh = Instance.new("SpecialMesh", handle)
  430. KnifeMesh.MeshType = "FileMesh"
  431. KnifeMesh.MeshId = "http://www.roblox.com/asset/?id=121944778"
  432. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
  433.  
  434. blackhand = Instance.new("Part",char)
  435. blackhand.Material = "Neon"
  436. blackhand.Transparency = 1
  437. blackhand.BrickColor = BrickColor.new("Really black")
  438. blackhand.Position = Vector3.new(999,999,999)
  439. blackhand.Size = Vector3.new(1.01,1.01,1.01)
  440. blackweld = Instance.new("Weld",blackhand)
  441. blackweld.Part0 = rarm
  442. blackweld.Part1 = blackhand
  443. blackweld.C0 = CFrame.new(0,-0.5,0)
  444.  
  445.  
  446. CV="Really red"
  447.  
  448. local txt = Instance.new("BillboardGui", char)
  449. txt.Adornee = hed
  450. txt.Name = "_status"
  451. txt.Size = UDim2.new(2, 0, 1.2, 0)
  452. txt.StudsOffset = Vector3.new(-9, 11, 0)
  453. local text = Instance.new("TextLabel", txt)
  454. text.Size = UDim2.new(10, 0, 7, 0)
  455. text.FontSize = "Size24"
  456. text.TextScaled = true
  457. text.TextTransparency = 0
  458. text.BackgroundTransparency = 1
  459. text.TextTransparency = 0
  460. text.TextStrokeTransparency = 0
  461. text.Font = "Arcade"
  462. text.TextStrokeColor3 = Color3.new(255,0,0)
  463.  
  464. v=Instance.new("Part")
  465. v.Name = "ColorBrick"
  466. v.Parent=char
  467. v.FormFactor="Symmetric"
  468. v.Anchored=true
  469. v.CanCollide=false
  470. v.BottomSurface="Smooth"
  471. v.TopSurface="Smooth"
  472. v.Size=Vector3.new(10,5,3)
  473. v.Transparency=1
  474. v.CFrame=torso.CFrame
  475. v.BrickColor=BrickColor.new(CV)
  476. v.Transparency=1
  477. text.TextColor3 = Color3.new(0,0,0)
  478. v.Shape="Block"
  479. text.Text = ""
  480.  
  481. refused = Instance.new("Sound",larm)
  482. refused.Volume = 100
  483. refused.SoundId = "http://www.roblox.com/asset/?id=400905079"
  484.  
  485. game:GetService("RunService").RenderStepped:connect(function()
  486.  
  487. if lala == true then
  488. if canchange == true then
  489. canchange = false
  490.  
  491. handle.BrickColor = BrickColor.new("Really red")
  492. wait(0.01)
  493. handle.BrickColor = BrickColor.new("Really blue")
  494. wait(0.01)
  495. handle.BrickColor = BrickColor.new("Bright green")
  496. wait(0.01)
  497. handle.BrickColor = BrickColor.new("Toothpaste")
  498. wait(0.01)
  499. handle.BrickColor = BrickColor.new("New Yeller")
  500. wait(0.01)
  501. handle.BrickColor = BrickColor.new("Magenta")
  502. wait(0.01)
  503. handle.BrickColor = BrickColor.new("Deep orange")
  504. wait(0.01)
  505. canchange = true
  506. end
  507. end
  508. if hum.MoveDirection.x == 0 then
  509. if idle == true then
  510. if idleon == true then
  511. idleon = false
  512. for i = 1,10 do
  513. wait()
  514. if hum.MoveDirection.x == 0 then
  515. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.3, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  516. end
  517. if hum.MoveDirection.x == 0 then
  518. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(20)), 0.1)
  519. end
  520. if hum.MoveDirection.x == 0 then
  521. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-10),math.rad(0),math.rad(-20)), 0.1)
  522. end
  523. if hum.MoveDirection.x == 0 then
  524. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.7, -0.3) * CFrame.Angles(math.rad(5), 0, math.rad(-2)), 0.1)
  525. end
  526. if hum.MoveDirection.x == 0 then
  527. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-10), 0, math.rad(2)), 0.1)
  528. end
  529. end
  530.  
  531.  
  532.  
  533.  
  534. for i = 1,10 do
  535. wait()
  536. if hum.MoveDirection.x == 0 then
  537. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-5), math.rad(0), math.rad(0)), 0.1)
  538. end
  539. if hum.MoveDirection.x == 0 then
  540. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(20)), 0.1)
  541. end
  542. if hum.MoveDirection.x == 0 then
  543. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-5),math.rad(0),math.rad(-20)), 0.1)
  544. end
  545. if hum.MoveDirection.x == 0 then
  546. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, -0.2) * CFrame.Angles(math.rad(5), 0, math.rad(-2)), 0.1)
  547. end
  548. if hum.MoveDirection.x == 0 then
  549. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(2)), 0.1)
  550. end
  551. end
  552. idleon = true
  553. end
  554.  
  555.  
  556.  
  557. end
  558. end
  559. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  560. if walking == true then
  561. if sprint == false then
  562. if idle1 == true then
  563. idle1 = false
  564.  
  565. idle = false
  566. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  567. for i = 1,10 do
  568. wait()
  569. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  570. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(20)), 0.1)
  571. end
  572. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  573. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(-20)), 0.1)
  574. end
  575. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  576. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  577. end
  578. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  579. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
  580. end
  581. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  582. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(2)), 0.1)
  583. end
  584.  
  585. end
  586. end
  587. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  588. for i = 1,10 do
  589. wait()
  590. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  591. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(20)), 0.1)
  592. end
  593. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  594. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-20)), 0.1)
  595. end
  596. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  597. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(0)), 0.1)
  598. end
  599. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  600. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-80), 0, math.rad(-2)), 0.1)
  601. end
  602. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  603. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
  604. end
  605. end
  606. end
  607. if hum.MoveDirection.x == 0 then
  608. idle = true
  609. end
  610. idle1 = true
  611. end
  612. end
  613. end
  614.  
  615. end
  616. ----------------------------------------------------------------------------------
  617.  
  618. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  619. if walking == true then
  620. if sprint == true then
  621. if idle1 == true then
  622. idle1 = false
  623.  
  624. idle = false
  625. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  626. for i = 1,8 do
  627. wait()
  628. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  629. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(20)), 0.1)
  630. end
  631. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  632. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(-20)), 0.1)
  633. end
  634. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  635. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.1)
  636. end
  637. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  638. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(-2)), 0.1)
  639. end
  640. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  641. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(2)), 0.1)
  642. end
  643.  
  644. end
  645. end
  646. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  647. for i = 1,8 do
  648. wait()
  649. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  650. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-40),math.rad(0),math.rad(20)), 0.1)
  651. end
  652. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  653. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-60),math.rad(0),math.rad(-20)), 0.1)
  654. end
  655. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  656. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(0)), 0.1)
  657. end
  658. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  659. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-120), 0, math.rad(-2)), 0.1)
  660. end
  661. if hum.MoveDirection.x < 0 or hum.MoveDirection.x > 0 then
  662. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(90), 0, math.rad(2)), 0.1)
  663. end
  664.  
  665. end
  666. end
  667. if hum.MoveDirection.x == 0 then
  668. idle = true
  669. end
  670. idle1 = true
  671. end
  672. end
  673. end
  674. end
  675.  
  676. if deathchat1 == true then
  677. char.Parent = workspace.Camera
  678. char.Archivable = true
  679. local c = p.Character:Clone()
  680. c:MakeJoints()
  681. for y,t in pairs(c:GetChildren()) do
  682. if t:IsA("Part") then
  683. t.CanCollide = false
  684. t.Anchored = true
  685. t.BrickColor = BrickColor.new("Black")
  686. t.Transparency = 1
  687.  
  688. t.TopSurface = "Smooth"
  689. t.BottomSurface = "Smooth"
  690. t.RightSurface = "Smooth"
  691. t.LeftSurface = "Smooth"
  692. t.FrontSurface = "Smooth"
  693. t.BackSurface = "Smooth"
  694.  
  695.  
  696. else
  697. t:Remove()
  698. end
  699. end
  700. c.Parent = workspace
  701. game.Debris:AddItem(c,.05)
  702. end
  703.  
  704. hum:SetStateEnabled("Dead",false)
  705. hum:SetStateEnabled(Enum.HumanoidStateType.Dead, false)
  706. if hum.Health < 5 and candie == true then
  707. hum.Name = "NOMOREDAMAGE"
  708. canheal = true
  709. done = false
  710.  
  711. done = true
  712. candie = false
  713. dead = true
  714. MegaloStrikesBack.Volume = 0
  715. refused:Play()
  716.  
  717. deathchat = true
  718. end
  719. if deathchat == true then
  720. deathchat = false
  721. idle = false
  722.  
  723. hed.face.Texture = "0"
  724. if char:FindFirstChild("TalkingBillBoard")~= nil then
  725. char:FindFirstChild("TalkingBillBoard"):destroy()
  726. end
  727. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.5, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.1)
  728. idle1 = false
  729. canattack = false
  730. gothitdecal2 = Instance.new("Decal",torso)
  731. gothitdecal2.Texture = "http://www.roblox.com/asset/?id=318427241"
  732. gothitdecal2.Face = "Back"
  733. gothitdecal1 = Instance.new("Decal",torso)
  734. gothitdecal1.Texture = "http://www.roblox.com/asset/?id=318427241"
  735. hed.Transparency = 1
  736. torso.Transparency = 1
  737. larm.Transparency = 1
  738. rarm.Transparency = 1
  739. lovecounter = false
  740. text.Text = ""
  741.  
  742. lleg.Transparency = 1
  743. rleg.Transparency = 1
  744. handle.Transparency = 1
  745. Handle.Transparency = 1
  746. blackhand.Transparency = 1
  747. wait(1)
  748. refused:Stop()
  749. wait(2)
  750.  
  751. chatfunc("But It Refused")
  752. wait(1.5)
  753. candie = true
  754. idle = true
  755. idle1 = true
  756. hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
  757. canattack = true
  758. lleg.Anchored = false
  759. rleg.Anchored = false
  760. larm.Anchored = false
  761. rarm.Anchored = false
  762. hed.Anchored = false
  763. torso.Anchored = false
  764. gothitdecal2:Destroy()
  765. gothitdecal1:Destroy()
  766. for i = 1,10 do
  767. wait()
  768. hed.Transparency = hed.Transparency - 0.1
  769. torso.Transparency = torso.Transparency - 0.1
  770. larm.Transparency = larm.Transparency - 0.1
  771. rarm.Transparency = rarm.Transparency - 0.1
  772. lleg.Transparency = lleg.Transparency - 0.1
  773. rleg.Transparency = rleg.Transparency - 0.1
  774. handle.Transparency = handle.Transparency - 0.1
  775. Handle.Transparency = Handle.Transparency - 0.1
  776. blackhand.Transparency = blackhand.Transparency - 0.1
  777. end
  778. lovecounter = true
  779. dead = false
  780. deathchat1 = false
  781. canheal = false
  782. hum.Health = 100
  783.  
  784. MegaloStrikesBack.Volume = 50
  785. wait(1)
  786. hum.Name = "Humanoid"
  787. end
  788.  
  789.  
  790.  
  791.  
  792.  
  793.  
  794. if canheal == true then
  795.  
  796. hum.Health = math.huge
  797.  
  798. end
  799.  
  800. if lovecounter == true then
  801. text.Text = "Chara LV "..love
  802. end
  803. end)
  804.  
  805. game.Players.CharacterAutoLoads = false
  806.  
  807.  
  808.  
  809.  
  810. hed.Transparency = 0
  811. torso.Transparency = 0
  812. larm.Transparency = 0
  813. rarm.Transparency = 0
  814. lleg.Transparency = 0
  815. rleg.Transparency = 0
  816. handle.Transparency = 0
  817. Handle.Transparency = 0
  818.  
  819.  
  820. idle = false
  821. walking = false
  822. soul1 = Instance.new("Part",char)
  823. soul1.Shape = "Ball"
  824. soul1.Material = "Neon"
  825. soul1.BrickColor = BrickColor.new("Really blue")
  826. soul1.Size = Vector3.new(1,1,1)
  827. soul1.Transparency = 0.5
  828. soul1weld = Instance.new("Weld",soul1)
  829. soul1weld.Part0 = torso
  830. soul1weld.Part1 = soul1
  831. soul1weld.C0 = CFrame.new(4,2,0)
  832. soul2 = Instance.new("Part",char)
  833. soul2.Shape = "Ball"
  834. soul2.Material = "Neon"
  835. soul2.Transparency = 0.5
  836. soul2.BrickColor = BrickColor.new("Bright green")
  837. soul2.Size = Vector3.new(1,1,1)
  838. soul2weld = Instance.new("Weld",soul2)
  839. soul2weld.Part0 = torso
  840. soul2weld.Part1 = soul2
  841. soul2weld.C0 = CFrame.new(5,2,0)
  842. soul3 = Instance.new("Part",char)
  843. soul3.Shape = "Ball"
  844. soul3.Transparency = 0.5
  845. soul3.Material = "Neon"
  846. soul3.BrickColor = BrickColor.new("Toothpaste")
  847. soul3.Size = Vector3.new(1,1,1)
  848. soul3weld = Instance.new("Weld",soul3)
  849. soul3weld.Part0 = torso
  850. soul3weld.Part1 = soul3
  851. soul3weld.C0 = CFrame.new(6,2,0)
  852. soul4 = Instance.new("Part",char)
  853. soul4.Shape = "Ball"
  854. soul4.Transparency = 0.5
  855. soul4.Material = "Neon"
  856. soul4.BrickColor = BrickColor.new("New Yeller")
  857. soul4.Size = Vector3.new(1,1,1)
  858. soul4weld = Instance.new("Weld",soul4)
  859. soul4weld.Part0 = torso
  860. soul4weld.Part1 = soul4
  861. soul4weld.C0 = CFrame.new(4,-1,0)
  862. soul5 = Instance.new("Part",char)
  863. soul5.Shape = "Ball"
  864. soul5.Material = "Neon"
  865. soul5.Transparency = 0.5
  866. soul5.BrickColor = BrickColor.new("Magenta")
  867. soul5.Size = Vector3.new(1,1,1)
  868. soul5weld = Instance.new("Weld",soul5)
  869. soul5weld.Part0 = torso
  870. soul5weld.Part1 = soul5
  871. soul5weld.C0 = CFrame.new(5,-1,0)
  872. soul6 = Instance.new("Part",char)
  873. soul6.Shape = "Ball"
  874. soul6.Transparency = 0.5
  875. soul6.Material = "Neon"
  876. soul6.BrickColor = BrickColor.new("Deep orange")
  877. soul6.Size = Vector3.new(1,1,1)
  878. soul6weld = Instance.new("Weld",soul6)
  879. soul6weld.Part0 = torso
  880. soul6weld.Part1 = soul6
  881. soul6weld.C0 = CFrame.new(6,-1,0)
  882. soul1s = Instance.new("Part",char)
  883. soul1s.Shape = "Ball"
  884. soul1s.Material = "Neon"
  885. soul1s.BrickColor = BrickColor.new("White")
  886. soul1s.Size = Vector3.new(0.9,0.9,0.9)
  887. soul1s.Transparency = 0.2
  888. soul1sweld = Instance.new("Weld",soul1s)
  889. soul1sweld.Part0 = torso
  890. soul1sweld.Part1 = soul1s
  891. soul1sweld.C0 = CFrame.new(4,2,0)
  892. soul2s = Instance.new("Part",char)
  893. soul2s.Shape = "Ball"
  894. soul2s.Material = "Neon"
  895. soul2s.Transparency = 0.2
  896. soul2s.BrickColor = BrickColor.new("White")
  897. soul2s.Size = Vector3.new(0.9,0.9,0.9)
  898. soul2sweld = Instance.new("Weld",soul2s)
  899. soul2sweld.Part0 = torso
  900. soul2sweld.Part1 = soul2s
  901. soul2sweld.C0 = CFrame.new(5,2,0)
  902. soul3s = Instance.new("Part",char)
  903. soul3s.Shape = "Ball"
  904. soul3s.Material = "Neon"
  905. soul3s.Transparency = 0.2
  906. soul3s.BrickColor = BrickColor.new("White")
  907. soul3s.Size = Vector3.new(0.9,0.9,0.9)
  908. soul3sweld = Instance.new("Weld",soul3s)
  909. soul3sweld.Part0 = torso
  910. soul3sweld.Part1 = soul3s
  911. soul3sweld.C0 = CFrame.new(6,2,0)
  912. soul4s = Instance.new("Part",char)
  913. soul4s.Shape = "Ball"
  914. soul4s.Material = "Neon"
  915. soul4s.Transparency = 0.2
  916. soul4s.BrickColor = BrickColor.new("White")
  917. soul4s.Material = "Neon"
  918. soul4s.Size = Vector3.new(0.9,0.9,0.9)
  919. soul4sweld = Instance.new("Weld",soul4s)
  920. soul4sweld.Part0 = torso
  921. soul4sweld.Part1 = soul4s
  922. soul4sweld.C0 = CFrame.new(4,-1,0)
  923. soul5s = Instance.new("Part",char)
  924. soul5s.Shape = "Ball"
  925. soul5s.Transparency = 0.2
  926. soul5s.BrickColor = BrickColor.new("White")
  927. soul5s.Size = Vector3.new(0.9,0.9,0.9)
  928. soul5s.Material = "Neon"
  929. soul5sweld = Instance.new("Weld",soul5s)
  930. soul5sweld.Part0 = torso
  931. soul5sweld.Part1 = soul5s
  932. soul5sweld.C0 = CFrame.new(5,-1,0)
  933. soul6s = Instance.new("Part",char)
  934. soul6s.Shape = "Ball"
  935. soul6s.Material = "Neon"
  936. soul6s.Transparency = 0.2
  937. soul6s.BrickColor = BrickColor.new("White")
  938. soul6s.Size = Vector3.new(0.9,0.9,0.9)
  939. soul6sweld = Instance.new("Weld",soul6s)
  940. soul6sweld.Part0 = torso
  941. soul6sweld.Part1 = soul6s
  942. soul6sweld.C0 = CFrame.new(6,-1,0)
  943.  
  944. chatfunc("These Are The Determinations")
  945. wait(2)
  946. chatfunc("I Never Got To Extract")
  947. wait(2)
  948.  
  949. chatfunc("In The Past Genocides")
  950. Weldb.C1 = CFrame.new(0, -2, 0) * CFrame.fromEulerAnglesXYZ(-3, 0, 0)
  951. for i = 1,100 do
  952. wait()
  953. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(0)), 0.01)
  954. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(-180),math.rad(0),math.rad(-200)), 0.01)
  955. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(0),math.rad(0),math.rad(0)), 0.01)
  956. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(-4)), 0.01)
  957. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(0), 0, math.rad(4)), 0.01)
  958.  
  959. end
  960. chatfunc("Lets See How Long You Survive")
  961.  
  962. for i = 1,10 do
  963. wait(0.04)
  964. soul1weld.C0 = soul1weld.C0 - Vector3.new(0.45,0.14,0)
  965. soul2weld.C0 = soul2weld.C0 - Vector3.new(0.5,0.14,0)
  966. soul3weld.C0 = soul3weld.C0 - Vector3.new(0.6,0.14,0)
  967. soul4weld.C0 = soul4weld.C0 - Vector3.new(0.45,-0.1,0)
  968. soul5weld.C0 = soul5weld.C0 - Vector3.new(0.5,-0.1,0)
  969. soul6weld.C0 = soul6weld.C0 - Vector3.new(0.6,-0.1,0)
  970. soul1sweld.C0 = soul1sweld.C0 - Vector3.new(0.45,0.14,0)
  971. soul2sweld.C0 = soul2sweld.C0 - Vector3.new(0.5,0.14,0)
  972. soul3sweld.C0 = soul3sweld.C0 - Vector3.new(0.6,0.14,0)
  973. soul4sweld.C0 = soul4sweld.C0 - Vector3.new(0.45,-0.1,0)
  974. soul5sweld.C0 = soul5sweld.C0 - Vector3.new(0.5,-0.1,0)
  975. soul6sweld.C0 = soul6sweld.C0 - Vector3.new(0.6,-0.1,0)
  976. end
  977.  
  978.  
  979. soul1d = Instance.new("Part",char)
  980. soul1d.Shape = "Ball"
  981. soul1d.Material = "Neon"
  982. soul1d.BrickColor = BrickColor.new("Really blue")
  983. soul1d.Size = Vector3.new(1,1,1)
  984. soul1d.Transparency = 0.5
  985. soul1dweld = Instance.new("Weld",soul1d)
  986. soul1dweld.Part0 = torso
  987. soul1dweld.Part1 = soul1d
  988. soul1dweld.C0 = CFrame.new(0,0,0)
  989. soul2d = Instance.new("Part",char)
  990. soul2d.Shape = "Ball"
  991. soul2d.Material = "Neon"
  992. soul2d.Transparency = 0.5
  993. soul2d.BrickColor = BrickColor.new("Bright green")
  994. soul2d.Size = Vector3.new(1,1,1)
  995. soul2dweld = Instance.new("Weld",soul2d)
  996. soul2dweld.Part0 = torso
  997. soul2dweld.Part1 = soul2d
  998. soul2dweld.C0 = CFrame.new(0,0,0)
  999. soul3d = Instance.new("Part",char)
  1000. soul3d.Shape = "Ball"
  1001. soul3d.Transparency = 0.5
  1002. soul3d.Material = "Neon"
  1003. soul3d.BrickColor = BrickColor.new("Toothpaste")
  1004. soul3d.Size = Vector3.new(1,1,1)
  1005. soul3dweld = Instance.new("Weld",soul3d)
  1006. soul3dweld.Part0 = torso
  1007. soul3dweld.Part1 = soul3d
  1008. soul3dweld.C0 = CFrame.new(0,0,0)
  1009. soul4d = Instance.new("Part",char)
  1010. soul4d.Shape = "Ball"
  1011. soul4d.Transparency = 0.5
  1012. soul4d.Material = "Neon"
  1013. soul4d.BrickColor = BrickColor.new("New Yeller")
  1014. soul4d.Size = Vector3.new(1,1,1)
  1015. soul4dweld = Instance.new("Weld",soul4d)
  1016. soul4dweld.Part0 = torso
  1017. soul4dweld.Part1 = soul4d
  1018. soul4dweld.C0 = CFrame.new(0,0,0)
  1019. soul5d = Instance.new("Part",char)
  1020. soul5d.Shape = "Ball"
  1021. soul5d.Material = "Neon"
  1022. soul5d.Transparency = 0.5
  1023. soul5d.BrickColor = BrickColor.new("Magenta")
  1024. soul5d.Size = Vector3.new(1,1,1)
  1025. soul5dweld = Instance.new("Weld",soul5d)
  1026. soul5dweld.Part0 = torso
  1027. soul5dweld.Part1 = soul5d
  1028. soul5dweld.C0 = CFrame.new(0,0,0)
  1029. soul6d = Instance.new("Part",char)
  1030. soul6d.Shape = "Ball"
  1031. soul6d.Transparency = 0.5
  1032. soul6d.Material = "Neon"
  1033. soul6d.BrickColor = BrickColor.new("Deep orange")
  1034. soul6d.Size = Vector3.new(1,1,1)
  1035. soul6dweld = Instance.new("Weld",soul6d)
  1036. soul6dweld.Part0 = torso
  1037. soul6dweld.Part1 = soul6d
  1038. soul6dweld.C0 = CFrame.new(0,0,0)
  1039. soul1sd = Instance.new("Part",char)
  1040. soul1sd.Shape = "Ball"
  1041. soul1sd.Material = "Neon"
  1042. soul1sd.BrickColor = BrickColor.new("White")
  1043. soul1sd.Size = Vector3.new(0.9,0.9,0.9)
  1044. soul1sd.Transparency = 0.2
  1045. soul1sdweld = Instance.new("Weld",soul1sd)
  1046. soul1sdweld.Part0 = torso
  1047. soul1sdweld.Part1 = soul1sd
  1048. soul1sdweld.C0 = CFrame.new(0,0,0)
  1049. soul2sd = Instance.new("Part",char)
  1050. soul2sd.Shape = "Ball"
  1051. soul2sd.Material = "Neon"
  1052. soul2sd.Transparency = 0.2
  1053. soul2sd.BrickColor = BrickColor.new("White")
  1054. soul2sd.Size = Vector3.new(0.9,0.9,0.9)
  1055. soul2sdweld = Instance.new("Weld",soul2sd)
  1056. soul2sdweld.Part0 = torso
  1057. soul2sdweld.Part1 = soul2sd
  1058. soul2sdweld.C0 = CFrame.new(0,0,0)
  1059. soul3sd = Instance.new("Part",char)
  1060. soul3sd.Shape = "Ball"
  1061. soul3sd.Material = "Neon"
  1062. soul3sd.Transparency = 0.2
  1063. soul3sd.BrickColor = BrickColor.new("White")
  1064. soul3sd.Size = Vector3.new(0.9,0.9,0.9)
  1065. soul3sdweld = Instance.new("Weld",soul3sd)
  1066. soul3sdweld.Part0 = torso
  1067. soul3sdweld.Part1 = soul3sd
  1068. soul3sdweld.C0 = CFrame.new(0,0,0)
  1069. soul4sd = Instance.new("Part",char)
  1070. soul4sd.Shape = "Ball"
  1071. soul4sd.Material = "Neon"
  1072. soul4sd.Transparency = 0.2
  1073. soul4sd.BrickColor = BrickColor.new("White")
  1074. soul4sd.Material = "Neon"
  1075. soul4sd.Size = Vector3.new(0.9,0.9,0.9)
  1076. soul4dsweld = Instance.new("Weld",soul4sd)
  1077. soul4dsweld.Part0 = torso
  1078. soul4dsweld.Part1 = soul4sd
  1079. soul4dsweld.C0 = CFrame.new(0,0,0)
  1080. soul5sd = Instance.new("Part",char)
  1081. soul5sd.Shape = "Ball"
  1082. soul5sd.Transparency = 0.2
  1083. soul5sd.BrickColor = BrickColor.new("White")
  1084. soul5sd.Size = Vector3.new(0.9,0.9,0.9)
  1085. soul5sd.Material = "Neon"
  1086. soul5sdweld = Instance.new("Weld",soul5sd)
  1087. soul5sdweld.Part0 = torso
  1088. soul5sdweld.Part1 = soul5sd
  1089. soul5sdweld.C0 = CFrame.new(0,0,0)
  1090. soul6sd = Instance.new("Part",char)
  1091. soul6sd.Shape = "Ball"
  1092. soul6sd.Material = "Neon"
  1093. soul6sd.Transparency = 0.2
  1094. soul6sd.BrickColor = BrickColor.new("White")
  1095. soul6sd.Size = Vector3.new(0.9,0.9,0.9)
  1096. soul6sdweld = Instance.new("Weld",soul6sd)
  1097. soul6sdweld.Part0 = torso
  1098. soul6sdweld.Part1 = soul6sd
  1099. soul6sdweld.C0 = CFrame.new(0,0,0)
  1100.  
  1101.  
  1102. soul1mesh = Instance.new("SpecialMesh",soul1d)
  1103. soul2mesh = Instance.new("SpecialMesh",soul2d)
  1104. soul3mesh = Instance.new("SpecialMesh",soul3d)
  1105. soul4mesh = Instance.new("SpecialMesh",soul4d)
  1106. soul5mesh = Instance.new("SpecialMesh",soul5d)
  1107. soul6mesh = Instance.new("SpecialMesh",soul6d)
  1108. soul1smesh = Instance.new("SpecialMesh",soul1sd)
  1109. soul2smesh = Instance.new("SpecialMesh",soul2sd)
  1110. soul3smesh = Instance.new("SpecialMesh",soul3sd)
  1111. soul4smesh = Instance.new("SpecialMesh",soul4sd)
  1112. soul5smesh = Instance.new("SpecialMesh",soul5sd)
  1113. soul6smesh = Instance.new("SpecialMesh",soul6sd)
  1114. soul1mesh.MeshType = "Sphere"
  1115. soul2mesh.MeshType = "Sphere"
  1116. soul3mesh.MeshType = "Sphere"
  1117. soul4mesh.MeshType = "Sphere"
  1118. soul5mesh.MeshType = "Sphere"
  1119. soul6mesh.MeshType = "Sphere"
  1120. soul1smesh.MeshType = "Sphere"
  1121. soul2smesh.MeshType = "Sphere"
  1122. soul3smesh.MeshType = "Sphere"
  1123. soul4smesh.MeshType = "Sphere"
  1124. soul5smesh.MeshType = "Sphere"
  1125. soul6smesh.MeshType = "Sphere"
  1126. KnifeMesh.TextureId = ""
  1127. canchange = true
  1128. for i = 1,20 do
  1129. soul1mesh.Scale = soul1mesh.Scale + Vector3.new(0.5,0.5,0.5)
  1130. soul1smesh.Scale = soul1smesh.Scale + Vector3.new(0.5,0.5,0.5)
  1131. soul1d.Transparency = soul1d.Transparency + 0.025
  1132. soul1sd.Transparency = soul1sd.Transparency + 0.05
  1133. blackhand.Transparency = blackhand.Transparency - 0.04
  1134. wait()
  1135. end
  1136. for i = 1,20 do
  1137. soul2mesh.Scale = soul2mesh.Scale + Vector3.new(0.5,0.5,0.5)
  1138. soul2smesh.Scale = soul2smesh.Scale + Vector3.new(0.5,0.5,0.5)
  1139. soul2d.Transparency = soul2d.Transparency + 0.025
  1140. soul2sd.Transparency = soul2sd.Transparency + 0.05
  1141. wait()
  1142. end
  1143. for i = 1,20 do
  1144. soul3mesh.Scale = soul3mesh.Scale + Vector3.new(0.5,0.5,0.5)
  1145. soul3smesh.Scale = soul3smesh.Scale + Vector3.new(0.5,0.5,0.5)
  1146. soul3d.Transparency = soul3d.Transparency + 0.025
  1147. soul3sd.Transparency = soul3sd.Transparency + 0.05
  1148. wait()
  1149. end
  1150. for i = 1,20 do
  1151. soul4mesh.Scale = soul4mesh.Scale + Vector3.new(0.5,0.5,0.5)
  1152. soul4smesh.Scale = soul4smesh.Scale + Vector3.new(0.5,0.5,0.5)
  1153. soul4d.Transparency = soul4d.Transparency + 0.025
  1154. soul4sd.Transparency = soul4sd.Transparency + 0.05
  1155. wait()
  1156. end
  1157. for i = 1,20 do
  1158. soul5mesh.Scale = soul5mesh.Scale + Vector3.new(0.5,0.5,0.5)
  1159. soul5smesh.Scale = soul5smesh.Scale + Vector3.new(0.5,0.5,0.5)
  1160. soul5d.Transparency = soul5d.Transparency + 0.025
  1161. soul5sd.Transparency = soul5sd.Transparency + 0.05
  1162. wait()
  1163. end
  1164. for i = 1,20 do
  1165. soul6mesh.Scale = soul6mesh.Scale + Vector3.new(0.5,0.5,0.5)
  1166. soul6smesh.Scale = soul6smesh.Scale + Vector3.new(0.5,0.5,0.5)
  1167. soul6d.Transparency = soul6d.Transparency + 0.025
  1168. soul6sd.Transparency = soul6sd.Transparency + 0.05
  1169. soul1.Transparency = soul1.Transparency + 0.08
  1170. soul2.Transparency = soul2.Transparency + 0.08
  1171. soul3.Transparency = soul3.Transparency + 0.08
  1172. soul4.Transparency = soul4.Transparency + 0.08
  1173. soul5.Transparency = soul5.Transparency + 0.08
  1174. soul6.Transparency = soul6.Transparency + 0.1
  1175. soul1s.Transparency = soul1.Transparency + 0.1
  1176. soul2s.Transparency = soul2s.Transparency + 0.1
  1177. soul3s.Transparency = soul3s.Transparency + 0.1
  1178. soul4s.Transparency = soul4s.Transparency + 0.1
  1179. soul5s.Transparency = soul5s.Transparency + 0.1
  1180. soul6s.Transparency = soul6s.Transparency + 0.1
  1181. wait()
  1182. end
  1183.  
  1184.  
  1185. wait(1)
  1186.  
  1187.  
  1188.  
  1189. lala = false
  1190. wait(1)
  1191. soul1:Destroy()
  1192. soul2:Destroy()
  1193. soul3:Destroy()
  1194. soul4:Destroy()
  1195. soul5:Destroy()
  1196. soul6:Destroy()
  1197. soul1s:Destroy()
  1198. soul2s:Destroy()
  1199. soul3s:Destroy()
  1200. soul4s:Destroy()
  1201. soul5s:Destroy()
  1202. soul6s:Destroy()
  1203. soul1d:Destroy()
  1204. soul2d:Destroy()
  1205. soul3d:Destroy()
  1206. soul4d:Destroy()
  1207. soul5d:Destroy()
  1208. soul6d:Destroy()
  1209. soul1sd:Destroy()
  1210. soul2sd:Destroy()
  1211. soul3sd:Destroy()
  1212. soul4sd:Destroy()
  1213. soul5sd:Destroy()
  1214. soul6sd:Destroy()
  1215. idle = true
  1216. chatfunc("Come =)")
  1217. hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
  1218. lovecounter = true
  1219. walking = true
  1220. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  1221. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
  1222. mouse.KeyDown:connect(function(key)
  1223. if key == "z" then
  1224. if canattack == true then
  1225. canattack = false
  1226.  
  1227. idle = false
  1228. walking = false
  1229. wait(1)
  1230.  
  1231. kill = Instance.new("Part",char)
  1232. kill.Position = torso.Position - Vector3.new(0,2,0)
  1233. kill.Size = Vector3.new(200,0.1,200)
  1234. kill.Name = "Immune"
  1235. kill.CanCollide = false
  1236. kill.Transparency = 1
  1237. kill.Anchored = true
  1238. kill.Material = "Neon"
  1239. kill.BrickColor = BrickColor.new("Really red")
  1240. killmesh = Instance.new("SpecialMesh",kill)
  1241. killmesh.MeshType = "FileMesh"
  1242. killmesh.MeshId = "rbxassetid://465435723"
  1243. killmesh.Scale = Vector3.new(5.2,0.01,5.2)
  1244. Weldb.C1 = CFrame.new(0, -1, -1) * CFrame.fromEulerAnglesXYZ(-2, 0, 0)
  1245. for i = 1, 20 do
  1246. wait()
  1247. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(0)), 0.2)
  1248. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.2)
  1249. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1250. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(6), math.rad(0), 0), 0.2)
  1251. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.2)
  1252. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.2)
  1253.  
  1254. end
  1255. for i = 1, 20 do
  1256. wait()
  1257. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,-0.3)*CFrame.Angles(math.rad(120),math.rad(0),math.rad(0)), 0.2)
  1258. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(-20),math.rad(0),math.rad(0)), 0.2)
  1259. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.2)
  1260. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1.6, 0) * CFrame.Angles( math.rad(-50), math.rad(0), 0), 0.2)
  1261. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -0.6, -0.8) * CFrame.Angles(math.rad(-20), math.rad(0), math.rad(-2)), 0.2)
  1262. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, 0, -0.8) * CFrame.Angles(math.rad(40), math.rad(0), math.rad(2)), 0.2)
  1263.  
  1264. end
  1265. hitsound:Play()
  1266. part = Instance.new("Part",char)
  1267. part.Size = Vector3.new(0.1,0.1,0.1)
  1268. part.Position = handle.Position
  1269. part1 = Instance.new("Part",char)
  1270. part1.Size = Vector3.new(0.1,0.1,0.1)
  1271. part1.Position = handle.Position
  1272. part2 = Instance.new("Part",char)
  1273. part2.Size = Vector3.new(0.1,0.1,0.1)
  1274. part2.Position = handle.Position
  1275. part3 = Instance.new("Part",char)
  1276. part3.Size = Vector3.new(0.1,0.1,0.1)
  1277. part3.Position = handle.Position
  1278. part4 = Instance.new("Part",char)
  1279. part4.Size = Vector3.new(0.1,0.1,0.1)
  1280. part4.Position = handle.Position
  1281. part5 = Instance.new("Part",char)
  1282. part5.Size = Vector3.new(0.1,0.1,0.1)
  1283. part5.Position = handle.Position
  1284. part6 = Instance.new("Part",char)
  1285. part6.Size = Vector3.new(0.1,0.1,0.1)
  1286. part6.Position = handle.Position
  1287. part7 = Instance.new("Part",char)
  1288. part7.Size = Vector3.new(0.1,0.1,0.1)
  1289. part7.Position = handle.Position
  1290. part8 = Instance.new("Part",char)
  1291. part8.Size = Vector3.new(0.1,0.1,0.1)
  1292. part8.Position = handle.Position
  1293. part9 = Instance.new("Part",char)
  1294. part9.Size = Vector3.new(0.1,0.1,0.1)
  1295. part9.Position = handle.Position
  1296. part10 = Instance.new("Part",char)
  1297. part10.Size = Vector3.new(0.1,0.1,0.1)
  1298. part10.Position = handle.Position
  1299. KnifeMesh.TextureId = ""
  1300. for i = 1,100 do
  1301. wait()
  1302. colorred = colorred + 0.006
  1303. handle.Color = Color3.new(colorred,0,0)
  1304. end
  1305. chatfunc("Welcome To My Special Hell")
  1306. for i = 1,120 do
  1307. wait()
  1308. kill.Transparency = kill.Transparency - 0.005
  1309. end
  1310.  
  1311. function onTouched(hit)
  1312. if hit.Parent:FindFirstChild("Immune") == nil then
  1313. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1314. hit.Parent:FindFirstChild("Head").Anchored = true
  1315. hitsound:Play()
  1316.  
  1317.  
  1318.  
  1319. hit.Parent:BreakJoints()
  1320. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1321. end
  1322.  
  1323.  
  1324.  
  1325.  
  1326.  
  1327. end
  1328. end
  1329. kill.Touched:connect(onTouched)
  1330.  
  1331.  
  1332. kill1 = Instance.new("Part",char)
  1333. kill1.Position = torso.Position - Vector3.new(0,2,0)
  1334. kill1.Size = Vector3.new(200,300,200)
  1335. kill1.Name = "Immune"
  1336. kill1.CanCollide = false
  1337. kill1.Transparency = 1
  1338. kill1.Anchored = false
  1339. kill1.Material = "Neon"
  1340. kill1.BrickColor = BrickColor.new("Really red")
  1341.  
  1342. function onTouched(hit)
  1343. if hit.Parent:FindFirstChild("Immune") == nil then
  1344. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1345. hit.Parent:FindFirstChild("Head").Anchored = true
  1346. hitsound:Play()
  1347.  
  1348.  
  1349.  
  1350. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1351. hit.Parent:BreakJoints()
  1352. end
  1353.  
  1354.  
  1355.  
  1356. end
  1357.  
  1358. end
  1359. kill1.Touched:connect(onTouched)
  1360. for i = 1,50 do
  1361. wait()
  1362. killmesh.Scale = killmesh.Scale + Vector3.new(0,0.2,0)
  1363. end
  1364. wait(2)
  1365. kill.Anchored = false
  1366. canattack = true
  1367. idle = true
  1368. walking = true
  1369. if char:FindFirstChild("TalkingBillBoard")~= nil then
  1370. char:FindFirstChild("TalkingBillBoard"):destroy()
  1371. end
  1372. KnifeMesh.TextureId = "http://www.roblox.com/asset/?id=121944805"
  1373. colorred = 0
  1374. Weldb.C1 = CFrame.new(0, -1.6, 0.8) * CFrame.fromEulerAnglesXYZ(-4.2, 0, 0)
  1375. end
  1376. end
  1377. end)
  1378. slashsound = Instance.new("Sound",torso)
  1379. slashsound.SoundId = "http://www.roblox.com/asset/?id=357417055"
  1380. slashsound.Volume = 10
  1381. hitsound = Instance.new("Sound",torso)
  1382. hitsound.SoundId = "http://www.roblox.com/asset/?id=623904185"
  1383. hitsound.Volume = 10
  1384. mouse.KeyDown:connect(function(key)
  1385. if key == "q" then
  1386. if canattack == true then
  1387. canattack = false
  1388. idle = false
  1389. walking = false
  1390. wait(0.5)
  1391. slash = Instance.new("Part",char)
  1392. slash.CanCollide = false
  1393. slash.Transparency = 1
  1394. slash.Size = Vector3.new(5,5,1)
  1395. slashweld = Instance.new("Weld",slash)
  1396. slashweld.Part0 = torso
  1397. slashweld.Part1 = slash
  1398. slashweld.C0 = CFrame.new(0,0,-2)
  1399. slashdecal = Instance.new("Decal",slash)
  1400. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  1401.  
  1402. slashdecal1 = Instance.new("Decal",slash)
  1403. slashdecal1.Face = "Back"
  1404. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  1405. slashsound:Play()
  1406. function onTouched(hit)
  1407. if hit.Parent:FindFirstChild("Immune") == nil then
  1408. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1409. hit.Parent:FindFirstChild("Head").Anchored = true
  1410. slash.TouchInterest:Destroy()
  1411. wait(1)
  1412. hitsound:Play()
  1413.  
  1414. gothit = Instance.new("Part",hit)
  1415. gothit.CanCollide = false
  1416. gothit.Transparency = 1
  1417. gothit.Size = Vector3.new(10,10,1)
  1418. gothitweld1 = Instance.new("Weld",gothit)
  1419. gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
  1420. gothitweld1.Part1 = gothit
  1421.  
  1422. gothitweld1.C0 = CFrame.new(0,4,0)
  1423. gothitdecal = Instance.new("Decal",gothit)
  1424. gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
  1425. love = love + 1
  1426. gothit = Instance.new("Part",hit)
  1427. gothit.CanCollide = false
  1428. gothit.Transparency = 1
  1429. gothit.Size = Vector3.new(10,10,1)
  1430. gothitweld = Instance.new("Weld",gothit)
  1431. gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
  1432. gothitweld.Part1 = gothit
  1433. gothitweld.C0 = CFrame.new(0,5,0)
  1434.  
  1435. gothitdecal = Instance.new("Decal",gothit)
  1436. gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
  1437. gothitdecal.Face = "Back"
  1438. gothitweld.C0 = CFrame.new(0,3.5,0)
  1439. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1440. wait(0.2)
  1441. gothitweld.C0 = CFrame.new(0,4,0)
  1442. gothitweld1.C0 = CFrame.new(0,4,0)
  1443. wait(0.2)
  1444. gothitweld.C0 = CFrame.new(0,3.5,0)
  1445. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1446. wait(0.2)
  1447. gothitweld.C0 = CFrame.new(0,4,0)
  1448. gothitweld1.C0 = CFrame.new(0,4,0)
  1449. wait(0.2)
  1450. gothitweld.C0 = CFrame.new(0,3.5,0)
  1451. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1452. wait(0.2)
  1453. gothitweld.C0 = CFrame.new(0,4,0)
  1454. gothitweld1.C0 = CFrame.new(0,4,0)
  1455. wait(0.2)
  1456. gothitweld.C0 = CFrame.new(0,3.5,0)
  1457. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1458. wait(0.2)
  1459. gothitweld.C0 = CFrame.new(0,4,0)
  1460. gothitweld1.C0 = CFrame.new(0,4,0)
  1461. wait(0.2)
  1462. gothitweld.C0 = CFrame.new(0,3.5,0)
  1463. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1464. wait(0.2)
  1465. gothitweld.C0 = CFrame.new(0,4,0)
  1466. gothitweld1.C0 = CFrame.new(0,4,0)
  1467. wait(0.2)
  1468. gothitweld.C0 = CFrame.new(0,3.5,0)
  1469. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1470. wait(0.2)
  1471. gothitweld.C0 = CFrame.new(0,4,0)
  1472. gothitweld1.C0 = CFrame.new(0,4,0)
  1473. wait(0.2)
  1474.  
  1475. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1476. hit.Parent:BreakJoints()
  1477. else
  1478. if hit.Parent:IsA("Model") then
  1479. wait(1)
  1480.  
  1481. hit.Parent:BreakJoints()
  1482.  
  1483.  
  1484.  
  1485.  
  1486.  
  1487. end
  1488. if hit:IsA("Part") and hit.Size.X < 500 then
  1489.  
  1490. hit.BrickColor = BrickColor.new("Really black")
  1491. hitsound:Play()
  1492. for i = 1,20 do
  1493. wait()
  1494. hit.Transparency = hit.Transparency + 0.05
  1495. end
  1496.  
  1497.  
  1498.  
  1499.  
  1500. end
  1501. end
  1502.  
  1503. end
  1504.  
  1505. end
  1506. slash.Touched:connect(onTouched)
  1507.  
  1508. for i = 1, 5 do
  1509. wait()
  1510. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1511. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1512. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1513. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1514. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1515. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1516.  
  1517. end
  1518. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  1519. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  1520. for i = 1, 5 do
  1521. wait()
  1522. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  1523. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1524. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1525. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1526. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1527. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1528.  
  1529. end
  1530. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  1531. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  1532.  
  1533. wait(0.1)
  1534. slash:Destroy()
  1535. canattack = true
  1536. idle = true
  1537. walking = true
  1538. end
  1539. end
  1540. end)
  1541.  
  1542.  
  1543.  
  1544.  
  1545.  
  1546.  
  1547.  
  1548.  
  1549. mouse.KeyDown:connect(function(key)
  1550. if key == "x" then
  1551. hed.Transparency = 1
  1552. torso.Transparency = 1
  1553. larm.Transparency = 1
  1554. hed.face.Texture = ""
  1555. MegaloStrikesBack.Volume = 0.1
  1556. lovecounter = false
  1557. rarm.Transparency = 1
  1558. lleg.Transparency = 1
  1559. rleg.Transparency = 1
  1560. handle.Transparency = 1
  1561. Handle.Transparency = 1
  1562. blackhand.Transparency = 1
  1563. hum.WalkSpeed = 60
  1564. text.Text = ""
  1565. if char:FindFirstChild("TalkingBillBoard")~= nil then
  1566. char:FindFirstChild("TalkingBillBoard"):destroy()
  1567. end
  1568. end
  1569. end)
  1570. mouse.KeyUp:connect(function(key)
  1571. if key == "x" then
  1572. hed.Transparency = 0
  1573. lovecounter = true
  1574. torso.Transparency = 0
  1575. larm.Transparency = 0
  1576. rarm.Transparency = 0
  1577. MegaloStrikesBack.Volume = 50
  1578. lleg.Transparency = 0
  1579. rleg.Transparency = 0
  1580. handle.Transparency = 0
  1581. Handle.Transparency = 0
  1582. blackhand.Transparency = 0
  1583. hum.WalkSpeed = 16
  1584. hed.face.Texture = "http://www.roblox.com/asset/?id=946610608"
  1585. end
  1586. end)
  1587. mouse.KeyDown:connect(function(Key)
  1588. if Key:byte() == 48 then
  1589. hum.WalkSpeed = 40
  1590. workspace.Camera.FieldOfView = 80
  1591. sprint = true
  1592. end
  1593. end)
  1594.  
  1595. mouse.KeyUp:connect(function(Key)
  1596. if Key:byte() == 48 then
  1597. hum.WalkSpeed = 16
  1598. workspace.Camera.FieldOfView = 70
  1599. sprint = false
  1600. end
  1601. end)
  1602.  
  1603.  
  1604.  
  1605. mouse.KeyDown:connect(function(key)
  1606. if key == "e" then
  1607. if canattack == true then
  1608. canattack = false
  1609. idle = false
  1610. walking = false
  1611. wait(1)
  1612.  
  1613.  
  1614. slashsound:Play()
  1615.  
  1616. for i = 1, 5 do
  1617. wait()
  1618. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1619. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1620. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1621. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1622. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1623. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1624.  
  1625. end
  1626.  
  1627. for i = 1, 5 do
  1628. wait()
  1629. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  1630. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1631. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1632. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1633. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1634. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1635.  
  1636. end
  1637. slash4 = Instance.new("Part",char)
  1638. slash4.CanCollide = false
  1639. slash4.Transparency = 0
  1640. slash4.Position = Vector3.new(999,999,999)
  1641. slash4.BrickColor = BrickColor.new("Really red")
  1642. slash4.Size = Vector3.new(0.3,9,0.3)
  1643. slashweld4 = Instance.new("Weld",slash4)
  1644. slashweld4.Part0 = torso
  1645. slashweld4.Part1 = slash4
  1646. slashweld4.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(-80))
  1647. slashsound:Play()
  1648. for i = 1, 5 do
  1649. wait()
  1650. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(80),math.rad(0),math.rad(30)), 0.7)
  1651. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1652. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1653. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-5), math.rad(15), 0), 0.7)
  1654. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1655. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1656.  
  1657. end
  1658. slash3 = Instance.new("Part",char)
  1659. slash3.CanCollide = false
  1660. slash3.Transparency = 0
  1661. slash3.Position = Vector3.new(999,999,999)
  1662. slash3.BrickColor = BrickColor.new("Really red")
  1663. slash3.Size = Vector3.new(0.3,9,0.3)
  1664. slashweld3 = Instance.new("Weld",slash3)
  1665. slashweld3.Part0 = torso
  1666. slashweld3.Part1 = slash3
  1667. slashweld3.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(40))
  1668. slashsound:Play()
  1669. for i = 1, 5 do
  1670. wait()
  1671. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(20),math.rad(0),math.rad(-70)), 0.7)
  1672. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1673. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1674. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
  1675. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1676. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1677.  
  1678. end
  1679. slash2 = Instance.new("Part",char)
  1680. slash2.CanCollide = false
  1681. slash2.Transparency = 0
  1682. slash2.Position = Vector3.new(999,999,999)
  1683. slash2.BrickColor = BrickColor.new("Really red")
  1684. slash2.Size = Vector3.new(0.3,9,0.3)
  1685. slashweld2 = Instance.new("Weld",slash2)
  1686. slashweld2.Part0 = torso
  1687. slashweld2.Part1 = slash2
  1688. slashweld2.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(150))
  1689. for i = 1, 5 do
  1690. wait()
  1691. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1692. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1693. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1694. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1695. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1696. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1697.  
  1698. end
  1699. slashsound:Play()
  1700. for i = 1, 5 do
  1701. wait()
  1702. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(-20)), 0.7)
  1703. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1704. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1705. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-7), math.rad(17), 0), 0.7)
  1706. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1707. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1708.  
  1709. end
  1710. slash1 = Instance.new("Part",char)
  1711. slash1.CanCollide = false
  1712. slash1.Transparency = 0
  1713. slash1.Position = Vector3.new(999,999,999)
  1714. slash1.BrickColor = BrickColor.new("Really red")
  1715. slash1.Size = Vector3.new(0.3,9,0.3)
  1716. slashweld1 = Instance.new("Weld",slash1)
  1717. slashweld1.Part0 = torso
  1718. slashweld1.Part1 = slash1
  1719. slashweld1.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(78))
  1720. for i = 1, 5 do
  1721. wait()
  1722. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1723. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1724. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1725. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1726. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1727. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1728.  
  1729. end
  1730. slash5 = Instance.new("Part",char)
  1731. slash5.CanCollide = true
  1732. slash5.Transparency = 1
  1733. slash5.Position = Vector3.new(999,999,999)
  1734. slash5.BrickColor = BrickColor.new("Really red")
  1735. slash5.Size = Vector3.new(4,3,4)
  1736. slashweld5 = Instance.new("Weld",slash5)
  1737. slashweld5.Part0 = torso
  1738. slashweld5.Part1 = slash5
  1739. slashweld5.C0 = CFrame.new(0,0,-3.2) * CFrame.Angles(math.rad(0),math.rad(0),math.rad(130))
  1740. function onTouched(hit)
  1741. if hit.Parent:FindFirstChild("Immune") == nil then
  1742. if hit.Parent:FindFirstChild("Humanoid") ~= nil then
  1743. hit.Parent:FindFirstChild("Head").Anchored = true
  1744.  
  1745. wait(1)
  1746. hitsound:Play()
  1747.  
  1748. gothit = Instance.new("Part",hit)
  1749. gothit.CanCollide = false
  1750. gothit.Transparency = 1
  1751. gothit.Size = Vector3.new(10,10,1)
  1752. gothitweld1 = Instance.new("Weld",gothit)
  1753. gothitweld1.Part0 = hit.Parent:FindFirstChild("Torso")
  1754. gothitweld1.Part1 = gothit
  1755.  
  1756. gothitweld1.C0 = CFrame.new(0,4,0)
  1757. gothitdecal = Instance.new("Decal",gothit)
  1758. gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
  1759. love = love + 1
  1760. gothit = Instance.new("Part",hit)
  1761. gothit.CanCollide = false
  1762. gothit.Transparency = 1
  1763. gothit.Size = Vector3.new(10,10,1)
  1764. gothitweld = Instance.new("Weld",gothit)
  1765. gothitweld.Part0 = hit.Parent:FindFirstChild("Torso")
  1766. gothitweld.Part1 = gothit
  1767. gothitweld.C0 = CFrame.new(0,5,0)
  1768.  
  1769. gothitdecal = Instance.new("Decal",gothit)
  1770. gothitdecal.Texture = "http://www.roblox.com/asset/?id=941619213"
  1771. gothitdecal.Face = "Back"
  1772. gothitweld.C0 = CFrame.new(0,3.5,0)
  1773. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1774. wait(0.2)
  1775. gothitweld.C0 = CFrame.new(0,4,0)
  1776. gothitweld1.C0 = CFrame.new(0,4,0)
  1777. wait(0.2)
  1778. gothitweld.C0 = CFrame.new(0,3.5,0)
  1779. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1780. wait(0.2)
  1781. gothitweld.C0 = CFrame.new(0,4,0)
  1782. gothitweld1.C0 = CFrame.new(0,4,0)
  1783. wait(0.2)
  1784. gothitweld.C0 = CFrame.new(0,3.5,0)
  1785. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1786. wait(0.2)
  1787. gothitweld.C0 = CFrame.new(0,4,0)
  1788. gothitweld1.C0 = CFrame.new(0,4,0)
  1789. wait(0.2)
  1790. gothitweld.C0 = CFrame.new(0,3.5,0)
  1791. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1792. wait(0.2)
  1793. gothitweld.C0 = CFrame.new(0,4,0)
  1794. gothitweld1.C0 = CFrame.new(0,4,0)
  1795. wait(0.2)
  1796. gothitweld.C0 = CFrame.new(0,3.5,0)
  1797. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1798. wait(0.2)
  1799. gothitweld.C0 = CFrame.new(0,4,0)
  1800. gothitweld1.C0 = CFrame.new(0,4,0)
  1801. wait(0.2)
  1802. gothitweld.C0 = CFrame.new(0,3.5,0)
  1803. gothitweld1.C0 = CFrame.new(0,3.5,0)
  1804. wait(0.2)
  1805. gothitweld.C0 = CFrame.new(0,4,0)
  1806. gothitweld1.C0 = CFrame.new(0,4,0)
  1807. wait(0.2)
  1808.  
  1809. hit.Parent:FindFirstChild("Humanoid").Health = -1
  1810. hit.Parent:BreakJoints()
  1811. else
  1812. if hit.Parent:IsA("Model") then
  1813. wait(1)
  1814.  
  1815. hit.Parent:BreakJoints()
  1816.  
  1817.  
  1818.  
  1819.  
  1820.  
  1821. end
  1822. if hit:IsA("Part") and hit.Size.X < 500 then
  1823.  
  1824. hit.BrickColor = BrickColor.new("Really black")
  1825. hitsound:Play()
  1826. for i = 1,20 do
  1827. wait()
  1828. hit.Transparency = hit.Transparency + 0.05
  1829. end
  1830.  
  1831.  
  1832.  
  1833.  
  1834. end
  1835. end
  1836.  
  1837. end
  1838.  
  1839. end
  1840. slash5.Touched:connect(onTouched)
  1841. for i = 1,70 do
  1842. wait()
  1843.  
  1844. slashweld1.C0 = slashweld1.C0 - Vector3.new(0,0,4)
  1845. slashweld2.C0 = slashweld2.C0 - Vector3.new(0,0,4)
  1846. slashweld3.C0 = slashweld3.C0 - Vector3.new(0,0,4)
  1847. slashweld4.C0 = slashweld4.C0 - Vector3.new(0,0,4)
  1848. slashweld5.C0 = slashweld5.C0 - Vector3.new(0,0,4)
  1849.  
  1850.  
  1851.  
  1852. end
  1853. slash1:Destroy()
  1854. slash2:Destroy()
  1855. slash3:Destroy()
  1856. slash4:Destroy()
  1857. slash5:Destroy()
  1858. canattack = true
  1859. idle = true
  1860. walking = true
  1861. end
  1862. end
  1863. end)
  1864.  
  1865.  
  1866. mouse.KeyDown:connect(function(key)
  1867. if key == "r" then
  1868. if canattack == true then
  1869.  
  1870.  
  1871.  
  1872. what = Instance.new("Part",char)
  1873. what.Size = Vector3.new(60,60,60)
  1874. what.Transparency = 1
  1875. what.Position = torso.Position
  1876. what.CanCollide = false
  1877. function onTouched(hit)
  1878. if hit.Parent:FindFirstChild("Immune") == nil then
  1879. if hit.Parent:FindFirstChild("Torso") ~= nil then
  1880. chatfunc('I Got You')
  1881.  
  1882. t = hit.Parent:FindFirstChild("Torso")
  1883. h = hit.Parent:FindFirstChild("Head")
  1884. la = hit.Parent:FindFirstChild("Left Arm")
  1885. ra = hit.Parent:FindFirstChild("Right Arm")
  1886. ll = hit.Parent:FindFirstChild("Left Leg")
  1887. rl = hit.Parent:FindFirstChild("Right Leg")
  1888.  
  1889. what:Destroy()
  1890.  
  1891. torso.CFrame = t.CFrame * CFrame.Angles(0,math.rad(180),0) + t.CFrame.lookVector * 3
  1892. h.Anchored = true
  1893.  
  1894.  
  1895.  
  1896. hed.Anchored = true
  1897. wait(2)
  1898. chatfunc('=)')
  1899. slash = Instance.new("Part",char)
  1900. slash.CanCollide = false
  1901. slash.Transparency = 1
  1902. slash.Size = Vector3.new(5,5,1)
  1903. slashweld = Instance.new("Weld",slash)
  1904. slashweld.Part0 = torso
  1905. slashweld.Part1 = slash
  1906. slashweld.C0 = CFrame.new(0,0,-2)
  1907. slashdecal = Instance.new("Decal",slash)
  1908. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  1909.  
  1910. slashdecal1 = Instance.new("Decal",slash)
  1911. slashdecal1.Face = "Back"
  1912. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  1913. slashsound:Play()
  1914. for i = 1, 5 do
  1915. wait()
  1916. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1917. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1918. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1919. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1920. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1921. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1922.  
  1923. end
  1924. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  1925. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  1926. for i = 1, 5 do
  1927. wait()
  1928. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  1929. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1930. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1931. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1932. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1933. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1934.  
  1935. end
  1936. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  1937. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  1938.  
  1939. wait(0.1)
  1940. slash:Destroy()
  1941. if la ~= nil then
  1942. la.BrickColor = BrickColor.new("Really black")
  1943. hitsound:Play()
  1944. for i = 1,20 do
  1945. wait()
  1946. la.Transparency = la.Transparency + 0.05
  1947. end
  1948. la:Destroy()
  1949. end
  1950. slash = Instance.new("Part",char)
  1951. slash.CanCollide = false
  1952. slash.Transparency = 1
  1953. slash.Size = Vector3.new(5,5,1)
  1954. slashweld = Instance.new("Weld",slash)
  1955. slashweld.Part0 = torso
  1956. slashweld.Part1 = slash
  1957. slashweld.C0 = CFrame.new(0,0,-2)
  1958. slashdecal = Instance.new("Decal",slash)
  1959. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  1960.  
  1961. slashdecal1 = Instance.new("Decal",slash)
  1962. slashdecal1.Face = "Back"
  1963. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  1964. slashsound:Play()
  1965. for i = 1, 5 do
  1966. wait()
  1967. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  1968. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1969. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1970. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  1971. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1972. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1973.  
  1974. end
  1975. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  1976. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  1977. for i = 1, 5 do
  1978. wait()
  1979. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  1980. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  1981. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  1982. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  1983. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  1984. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  1985.  
  1986. end
  1987. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  1988. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  1989.  
  1990. wait(0.1)
  1991. slash:Destroy()
  1992. if ll ~= nil then
  1993. ll.BrickColor = BrickColor.new("Really black")
  1994. hitsound:Play()
  1995. for i = 1,20 do
  1996. wait()
  1997. ll.Transparency = ll.Transparency + 0.05
  1998. end
  1999. ll:Destroy()
  2000. end
  2001. slash = Instance.new("Part",char)
  2002. slash.CanCollide = false
  2003. slash.Transparency = 1
  2004. slash.Size = Vector3.new(5,5,1)
  2005. slashweld = Instance.new("Weld",slash)
  2006. slashweld.Part0 = torso
  2007. slashweld.Part1 = slash
  2008. slashweld.C0 = CFrame.new(0,0,-2)
  2009. slashdecal = Instance.new("Decal",slash)
  2010. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2011.  
  2012. slashdecal1 = Instance.new("Decal",slash)
  2013. slashdecal1.Face = "Back"
  2014. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2015. slashsound:Play()
  2016. for i = 1, 5 do
  2017. wait()
  2018. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2019. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2020. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2021. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2022. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2023. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2024.  
  2025. end
  2026. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2027. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2028. for i = 1, 5 do
  2029. wait()
  2030. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2031. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2032. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2033. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2034. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2035. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2036.  
  2037. end
  2038. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2039. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2040.  
  2041. wait(0.1)
  2042. slash:Destroy()
  2043. if ra ~= nil then
  2044. ra.BrickColor = BrickColor.new("Really black")
  2045. hitsound:Play()
  2046. for i = 1,20 do
  2047. wait()
  2048. ra.Transparency = ra.Transparency + 0.05
  2049. end
  2050. ra:Destroy()
  2051. end
  2052. slash = Instance.new("Part",char)
  2053. slash.CanCollide = false
  2054. slash.Transparency = 1
  2055. slash.Size = Vector3.new(5,5,1)
  2056. slashweld = Instance.new("Weld",slash)
  2057. slashweld.Part0 = torso
  2058. slashweld.Part1 = slash
  2059. slashweld.C0 = CFrame.new(0,0,-2)
  2060. slashdecal = Instance.new("Decal",slash)
  2061. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2062.  
  2063. slashdecal1 = Instance.new("Decal",slash)
  2064. slashdecal1.Face = "Back"
  2065. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2066. slashsound:Play()
  2067. for i = 1, 5 do
  2068. wait()
  2069. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2070. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2071. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2072. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2073. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2074. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2075.  
  2076. end
  2077. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2078. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2079. for i = 1, 5 do
  2080. wait()
  2081. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2082. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2083. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2084. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2085. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2086. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2087.  
  2088. end
  2089. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2090. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2091.  
  2092. wait(0.1)
  2093. slash:Destroy()
  2094. if rl ~= nil then
  2095. rl.BrickColor = BrickColor.new("Really black")
  2096. hitsound:Play()
  2097. for i = 1,20 do
  2098. wait()
  2099. rl.Transparency = rl.Transparency + 0.05
  2100. end
  2101. rl:Destroy()
  2102. end
  2103. slash = Instance.new("Part",char)
  2104. slash.CanCollide = false
  2105. slash.Transparency = 1
  2106. slash.Size = Vector3.new(5,5,1)
  2107. slashweld = Instance.new("Weld",slash)
  2108. slashweld.Part0 = torso
  2109. slashweld.Part1 = slash
  2110. slashweld.C0 = CFrame.new(0,0,-2)
  2111. slashdecal = Instance.new("Decal",slash)
  2112. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2113.  
  2114. slashdecal1 = Instance.new("Decal",slash)
  2115. slashdecal1.Face = "Back"
  2116. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2117. slashsound:Play()
  2118. for i = 1, 5 do
  2119. wait()
  2120. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2121. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2122. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2123. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2124. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2125. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2126.  
  2127. end
  2128. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2129. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2130. for i = 1, 5 do
  2131. wait()
  2132. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2133. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2134. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2135. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2136. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2137. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2138.  
  2139. end
  2140. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2141. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2142.  
  2143. wait(0.1)
  2144. slash:Destroy()
  2145.  
  2146. t.BrickColor = BrickColor.new("Really black")
  2147. hitsound:Play()
  2148. for i = 1,20 do
  2149. wait()
  2150. t.Transparency = t.Transparency + 0.05
  2151. end
  2152. t:Destroy()
  2153. slash = Instance.new("Part",char)
  2154. slash.CanCollide = false
  2155. slash.Transparency = 1
  2156. slash.Size = Vector3.new(5,5,1)
  2157. slashweld = Instance.new("Weld",slash)
  2158. slashweld.Part0 = torso
  2159. slashweld.Part1 = slash
  2160. slashweld.C0 = CFrame.new(0,0,-2)
  2161. slashdecal = Instance.new("Decal",slash)
  2162. slashdecal.Texture = "http://www.roblox.com/asset/?id=941494931"
  2163.  
  2164. slashdecal1 = Instance.new("Decal",slash)
  2165. slashdecal1.Face = "Back"
  2166. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942252949"
  2167. slashsound:Play()
  2168. for i = 1, 5 do
  2169. wait()
  2170. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.5,0.5,0)*CFrame.Angles(math.rad(150),math.rad(0),math.rad(50)), 0.7)
  2171. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2172. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2173. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(0), math.rad(0), 0), 0.7)
  2174. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2175. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2176.  
  2177. end
  2178. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495205"
  2179. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253050"
  2180. for i = 1, 5 do
  2181. wait()
  2182. rarm.Weld.C0 = Lerp(rarm.Weld.C0, CFrame.new(1.2,0.5,-0.8)*CFrame.Angles(math.rad(30),math.rad(0),math.rad(-30)), 0.7)
  2183. larm.Weld.C0 = Lerp(larm.Weld.C0, CFrame.new(-1.5,0.5,0)*CFrame.Angles(math.rad(10),math.rad(0),math.rad(0)), 0.7)
  2184. hed.Weld.C0 = Lerp(hed.Weld.C0, CFrame.new(0,1.5,0)*CFrame.Angles(math.rad(0),math.rad(0),0), 0.7)
  2185. torso.Weld.C0 = Lerp(torso.Weld.C0, CFrame.new(0, -1, 0) * CFrame.Angles( math.rad(-15), math.rad(15), 0), 0.7)
  2186. lleg.Weld.C0 = Lerp(lleg.Weld.C0, CFrame.new(-0.5, -1, 0) * CFrame.Angles(math.rad(-10), math.rad(0), math.rad(-2)), 0.7)
  2187. rleg.Weld.C0 = Lerp(rleg.Weld.C0, CFrame.new(0.5, -1, 0) * CFrame.Angles(math.rad(10), math.rad(0), math.rad(2)), 0.7)
  2188.  
  2189. end
  2190. slashdecal.Texture = "http://www.roblox.com/asset/?id=941495475"
  2191. slashdecal1.Texture = "http://www.roblox.com/asset/?id=942253124"
  2192.  
  2193. wait(0.1)
  2194. slash:Destroy()
  2195. if h ~= nil then
  2196. h.BrickColor = BrickColor.new("Really black")
  2197. hitsound:Play()
  2198. for i = 1,20 do
  2199. wait()
  2200. h.Transparency = h.Transparency + 0.05
  2201. end
  2202. h:Destroy()
  2203. end
  2204. hed.Anchored = false
  2205.  
  2206. end
  2207. end
  2208. end
  2209. what.Touched:connect(onTouched)
  2210. end
  2211. end
  2212. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement