reset234567890

.

Apr 5th, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 74.13 KB | None | 0 0
  1. print("Edit by meunomenaoereal (dont touch this plz)")
  2. print("If u edit this again, send me a copy plz -_-")
  3. -- Synapse Decompiler
  4. -- Purchase Here: https://brack4712.xyz/synapse/purchase/
  5.  
  6. local tecks2 = Instance.new("TextLabel",naeeym2)
  7. tecks2.BackgroundTransparency = 1
  8. tecks2.TextScaled = true
  9. tecks2.BorderSizePixel = 0
  10. tecks2.Font = "Garamond"
  11. tecks2.TextSize = 30
  12. tecks2.TextStrokeTransparency = 0
  13. tecks2.TextColor3 = BrickColor.new('Really black').Color
  14. tecks2.TextStrokeColor3 = BrickColor.new('Really black').Color
  15. tecks2.Size = UDim2.new(1,0,0.5,0)
  16. tecks2.Parent = naeeym2
  17. textfag = tecks2
  18. wait(1)
  19. tecks2.Text = "Star Glitcher"
  20. coroutine.resume(coroutine.create(function()
  21. while textfag ~= nil do
  22. swait()
  23. textfag.Position = UDim2.new(math.random(-.2,.2),math.random(-3,3),.05,math.random(-3,3))
  24. textfag.Rotation = math.random(-3,3)
  25. end
  26. wait(0.016666666666667)
  27. local S = setmetatable({},{__index = function(s,i) return game:service(i) end})
  28. local CF = {N=CFrame.new,A=CFrame.Angles,fEA=CFrame.fromEulerAnglesXYZ}
  29. local C3 = {tRGB= function(c3) return c3.r*255,c3.g*255,c3.b*255 end,N=Color3.new,RGB=Color3.fromRGB,HSV=Color3.fromHSV,tHSV=Color3.toHSV}
  30. local V3 = {N=Vector3.new,FNI=Vector3.FromNormalId,A=Vector3.FromAxis}
  31. local M = {C=math.cos,R=math.rad,S=math.sin,P=math.pi,RNG=math.random,MRS=math.randomseed,H=math.huge,RRNG = function(min,max,div) return math.rad(math.random(min,max)/(div or 1)) end}
  32. local R3 = {N=Region3.new}
  33. local De = S.Debris
  34. local WS = workspace
  35. local Lght = S.Lighting
  36. local RepS = S.ReplicatedStorage
  37. local IN = Instance.new
  38. local Plrs = S.Players
  39. local Plr = Plrs.LocalPlayer
  40. local Char = Plr.Character
  41. local Hum = Char:FindFirstChildOfClass'Humanoid'
  42. local RArm = Char["Right Arm"]
  43. local LArm = Char["Left Arm"]
  44. local RLeg = Char["Right Leg"]
  45. local LLeg = Char["Left Leg"]
  46. local Root = Char:FindFirstChild'HumanoidRootPart'
  47. local Torso = Char.Torso
  48. local Head = Char.Head
  49. local NeutralAnims = true
  50. local Attack = false
  51. local Debounces = {Debounces={}}
  52. local Mouse = Plr:GetMouse()
  53. local Hit = {}
  54. local Sine = 0
  55. local Change = 1
  56. local BloodPuddles = {}
  57. local Glitching = false
  58. local Target;
  59. local Cam = workspace.CurrentCamera
  60. local Effects = IN("Folder",Char)
  61. Effects.Name = "Effects"
  62. local Kills = 0;
  63. local PlrGui = Plr:WaitForChild'PlayerGui'
  64. function Debounces:New(name,cooldown)
  65. local aaaaa = {Usable=true,Cooldown=cooldown or 2,CoolingDown=false,LastUse=0}
  66. setmetatable(aaaaa,{__index = Debounces})
  67. Debounces.Debounces[name] = aaaaa
  68. return aaaaa
  69. end
  70. function Debounces:Use(overrideUsable)
  71. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  72. if(self.Usable or overrideUsable)then
  73. self.Usable = false
  74. self.CoolingDown = true
  75. local LastUse = time()
  76. self.LastUse = LastUse
  77. delay(self.Cooldown or 2,function()
  78. if(self.LastUse == LastUse)then
  79. self.CoolingDown = false
  80. self.Usable = true
  81. end
  82. end)
  83. end
  84. end
  85. function Debounces:Get(name)
  86. assert(typeof(name) == 'string',("bad argument #1 to 'get' (string expected, got %s)"):format(typeof(name) == nil and "no value" or typeof(name)))
  87. for i,v in next, Debounces.Debounces do
  88. if(i == name)then
  89. return v;
  90. end
  91. end
  92. end
  93. function Debounces:GetProgressPercentage()
  94. assert(self.Usable ~= nil and self.LastUse ~= nil and self.CoolingDown ~= nil,"Expected ':' not '.' calling member function Use")
  95. if(self.CoolingDown and not self.Usable)then
  96. return math.max(
  97. math.floor(
  98. (
  99. (time()-self.LastUse)/self.Cooldown or 2
  100. )*100
  101. )
  102. )
  103. else
  104. return 100
  105. end
  106. end
  107. local baseSound = IN("Sound")
  108. function Sound(parent,id,pitch,volume,looped,effect,autoPlay)
  109. local Sound = baseSound:Clone()
  110. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  111. Sound.Pitch = pitch or 1
  112. Sound.Volume = volume or 1
  113. Sound.Looped = looped or false
  114. if(autoPlay)then
  115. coroutine.wrap(function()
  116. repeat wait() until Sound.IsLoaded
  117. Sound.Playing = autoPlay or false
  118. end)()
  119. end
  120. if(not looped and effect)then
  121. Sound.Stopped:connect(function()
  122. Sound.Volume = 0
  123. Sound:destroy()
  124. end)
  125. elseif(effect)then
  126. warn("Sound can't be looped and a sound effect!")
  127. end
  128. Sound.Parent =parent or Torso
  129. return Sound
  130. end
  131. function Part(parent,color,material,size,cframe,anchored,cancollide)
  132. local part = IN("Part")
  133. part.Parent = parent or Char
  134. part[typeof(color) == 'BrickColor' and 'BrickColor' or 'Color'] = color or C3.N(0,0,0)
  135. part.Material = material or Enum.Material.SmoothPlastic
  136. part.TopSurface,part.BottomSurface=10,10
  137. part.Size = size or V3.N(1,1,1)
  138. part.CFrame = cframe or CF.N(0,0,0)
  139. part.CanCollide = cancollide or false
  140. part.Anchored = anchored or false
  141. return part
  142. end
  143. function Weld(part0,part1,c0,c1)
  144. local weld = IN("Weld")
  145. weld.Parent = part0
  146. weld.Part0 = part0
  147. weld.Part1 = part1
  148. weld.C0 = c0 or CF.N()
  149. weld.C1 = c1 or CF.N()
  150. return weld
  151. end
  152. function Mesh(parent,meshtype,meshid,textid,scale,offset)
  153. local part = IN("SpecialMesh")
  154. part.MeshId = meshid or ""
  155. part.TextureId = textid or ""
  156. part.Scale = scale or V3.N(1,1,1)
  157. part.Offset = offset or V3.N(0,0,0)
  158. part.MeshType = meshtype or Enum.MeshType.Sphere
  159. part.Parent = parent
  160. return part
  161. end
  162. NewInstance = function(instance,parent,properties)
  163. local inst = Instance.new(instance)
  164. inst.Parent = parent
  165. if(properties)then
  166. for i,v in next, properties do
  167. pcall(function() inst[i] = v end)
  168. end
  169. end
  170. return inst;
  171. end
  172. function Clone(instance,parent,properties)
  173. local inst = instance:Clone()
  174. inst.Parent = parent
  175. if(properties)then
  176. for i,v in next, properties do
  177. pcall(function() inst[i] = v end)
  178. end
  179. end
  180. return inst;
  181. end
  182. function SoundPart(id,pitch,volume,looped,effect,autoPlay,cf)
  183. local soundPart = NewInstance("Part",Effects,{Transparency=1,CFrame=cf or Torso.CFrame,Anchored=true,CanCollide=false,Size=V3.N()})
  184. local Sound = IN("Sound")
  185. Sound.SoundId = "rbxassetid://".. tostring(id or 0)
  186. Sound.Pitch = pitch or 1
  187. Sound.Volume = volume or 1
  188. Sound.Looped = looped or false
  189. if(autoPlay)then
  190. coroutine.wrap(function()
  191. repeat wait() until Sound.IsLoaded
  192. Sound.Playing = autoPlay or false
  193. end)()
  194. end
  195. if(not looped and effect)then
  196. Sound.Stopped:connect(function()
  197. Sound.Volume = 0
  198. soundPart:destroy()
  199. end)
  200. elseif(effect)then
  201. warn("Sound can't be looped and a sound effect!")
  202. end
  203. Sound.Parent = soundPart
  204. return Sound
  205. end
  206. local Instance = setmetatable({ClearChildrenOfClass = function(where,class,recursive) local children = (recursive and where:GetDescendants() or where:GetChildren()) for _,v in next, children do if(v:IsA(class))then v:destroy();end;end;end},{__index = Instance})
  207. function CamShake(who,times,intense,origin)
  208. coroutine.wrap(function()
  209. if(script:FindFirstChild'CamShake')then
  210. local cam = script.CamShake:Clone()
  211. cam:WaitForChild'intensity'.Value = intense
  212. cam:WaitForChild'times'.Value = times
  213.  
  214. if(origin)then NewInstance((typeof(origin) == 'Instance' and "ObjectValue" or typeof(origin) == 'Vector3' and 'Vector3Value'),cam,{Name='origin',Value=origin}) end
  215. cam.Parent = who
  216. wait()
  217. cam.Disabled = false
  218. elseif(who == Plr or who == Char or who:IsDescendantOf(Plr))then
  219. local intensity = intense
  220. if(Hum and not Hum:FindFirstChild'CamShaking')then
  221. local cam = workspace.CurrentCamera
  222. local oCO = Hum.CameraOffset
  223. local cs = Instance.new("BoolValue",Hum)
  224. cs.Name = "CamShaking"
  225. for i = 1, times do
  226. local camDistFromOrigin
  227. if(typeof(origin) == 'Instance' and origin:IsA'BasePart')then
  228. camDistFromOrigin = math.floor( (cam.CoordinateFrame.p-origin.Position).magnitude )/25
  229. elseif(typeof(origin) == 'Vector3')then
  230. camDistFromOrigin = math.floor( (cam.CoordinateFrame.p-origin).magnitude )/25
  231. end
  232. if(camDistFromOrigin)then
  233. intensity = math.min(intense, math.floor(intense/camDistFromOrigin))
  234. end
  235. if(Hum)then
  236. Hum.CameraOffset = Vector3.new(math.random(-intensity,intensity)/200,math.random(-intensity,intensity)/200,math.random(-intensity,intensity)/200)
  237. end
  238. swait()
  239. end
  240. if(Hum)then
  241. Hum.CameraOffset = oCO
  242. end
  243. cs:destroy()
  244. end
  245. end
  246. end)()
  247. end
  248.  
  249.  
  250. function CamShakeAll(times,intense,origin)
  251. for _,v in next, Plrs:players() do
  252. CamShake(v:FindFirstChildOfClass'PlayerGui' or v:FindFirstChildOfClass'Backpack' or v.Character,times,intense,origin)
  253. end
  254. end
  255.  
  256. function ServerScript(code)
  257. if(script:FindFirstChild'Loadstring')then
  258. local load = script.Loadstring:Clone()
  259. load:WaitForChild'Sauce'.Value = code
  260. load.Disabled = false
  261. load.Parent = workspace
  262. elseif(NS and typeof(NS) == 'function')then
  263. NS(code,workspace)
  264. else
  265. warn("no serverscripts lol")
  266. end
  267. end
  268.  
  269. function LocalOnPlayer(who,code)
  270. ServerScript([[
  271. wait()
  272. script.Parent=nil
  273. if(not _G.Http)then _G.Http = game:service'HttpService' end
  274.  
  275. local Http = _G.Http or game:service'HttpService'
  276.  
  277. local source = ]].."[["..code.."]]"..[[
  278. local link = "https://api.vorth.xyz/R_API/R.UPLOAD/NEW_LOCAL.php"
  279. local asd = Http:PostAsync(link,source)
  280. repeat wait() until asd and Http:JSONDecode(asd) and Http:JSONDecode(asd).Result and Http:JSONDecode(asd).Result.Require_ID
  281. local ID = Http:JSONDecode(asd).Result.Require_ID
  282. local vs = require(ID).VORTH_SCRIPT
  283. vs.Parent = game:service'Players'.]]..who.Name..[[.Character
  284. ]])
  285. end
  286.  
  287. function Nametag(color,tag)
  288. local r,g,b = C3.tRGB(color)
  289. local c3 = C3.RGB(r/2,g/2,b/2)
  290. local name = script:FindFirstChild'Nametag' and script.Nametag:Clone();
  291. if(not name)then
  292. name = NewInstance("BillboardGui",nil,{MaxDistance=150,AlwaysOnTop=true,Active=false,Size=UDim2.new(5,0,1,0),SizeOffset=Vector2.new(0,6)})
  293. NewInstance("TextLabel",name,{Name='Title',BackgroundTransparency=1,Size=UDim2.new(2.5,0,1.5,0),Position=UDim2.new(-.75,0,.9,0),Text=tag,Font=Enum.Font.Fantasy,TextColor3 = color,TextStrokeColor3 = c3,TextStrokeTransparency=0,TextSize=14,TextScaled=true,TextWrapped=true,})
  294. end
  295. name.Title.Text = tag
  296. name.Title.TextColor3 = color
  297. name.Title.TextStrokeColor3 = c3
  298.  
  299.  
  300. name.Parent = Char
  301. name.Adornee = Head
  302. name.PlayerToHideFrom = Plr
  303.  
  304. return name
  305. end
  306.  
  307. local Frame_Speed = 60
  308. local Remove_Hats = false
  309. local Remove_Clothing = false
  310. local PlayerSize = 1
  311. local DamageColor = BrickColor.new'Really red'
  312. local MusicID = 1041562070
  313. local God = false
  314. local Muted = false
  315. local WalkSpeed = 8
  316. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  317. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  318. New = function(Object, Parent, Name, Data)
  319. local Object = Instance.new(Object)
  320. for Index, Value in pairs(Data or {}) do
  321. Object[Index] = Value
  322. end
  323. Object.Parent = Parent
  324. Object.Name = Name
  325. return Object
  326. end
  327. local NoClear = {}
  328. local Voodoo = New("Model",Char,"Voodoo",{})
  329. local VTorso = New("Part",Voodoo,"Torso",{Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.60029155, 0.60029155, 0.300145775),CFrame = CFrame.new(16.9809666, 34.1897087, 12.3049202, 0.979014099, -0.138922885, 0.149103805, 0.203679025, 0.691457033, -0.693110347, -0.0068100011, 0.708934069, 0.705241799),LeftSurface = Enum.SurfaceType.Weld,RightSurface = Enum.SurfaceType.Weld,})
  330. local VHead = New("Part",Voodoo,"Head",{FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.60029155, 0.300145775, 0.300145775),CFrame = CFrame.new(16.9182777, 34.5018272, 12.6228008, 0.981222212, -0.146387979, 0.125594378, 0.192836046, 0.730337858, -0.655302107, 0.0042019859, 0.667215884, 0.744852483),TopSurface = Enum.SurfaceType.Smooth,})
  331. local SMesh = New("SpecialMesh",VHead,"Mesh",{Scale = Vector3.new(1.25, 1.25, 1.25),})
  332. local mot = New("Motor",Head,"mot",{Part0 = VHead,Part1 = VTorso,C0 = CFrame.new(0, 0, 0, 0.981222093, 0.192836031, 0.00420200033, -0.146387964, 0.730337918, 0.667215943, 0.125594392, -0.655302107, 0.744852543),C1 = CFrame.new(3.43322754e-05, 0.449882507, -0.00149726868, 0.979014099, 0.203679025, -0.0068100011, -0.138922885, 0.691457033, 0.708934069, 0.149103805, -0.693110347, 0.705241799),})
  333. local VLA = New("Part",Voodoo,"Left Arm",{Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300145775, 0.60029155, 0.300145775),CFrame = CFrame.new(16.5398445, 34.0791664, 12.4485207, 0.842483878, 0.427749634, 0.327492595, -0.371340811, 0.901513815, -0.222213656, -0.390290886, 0.0656000972, 0.918351531),})
  334. local mot = New("Motor",VLA,"mot",{Part0 = VLA,Part1 = VTorso,C0 = CFrame.new(0, 0, 0, 0.842483819, -0.371340901, -0.390290916, 0.427749544, 0.901513815, 0.0656001195, 0.327492595, -0.222213745, 0.91835165),C1 = CFrame.new(-0.455356598, 0.0866508484, 0.112116814, 0.979014099, 0.203679025, -0.0068100011, -0.138922885, 0.691457033, 0.708934069, 0.149103805, -0.693110347, 0.705241799),})
  335. local VLL = New("Part",Voodoo,"Left Leg",{Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300145775, 0.60029155, 0.300145775),CFrame = CFrame.new(16.9056549, 33.7453232, 11.9883003, 0.984823465, -0.0888315961, 0.149104908, 0.137862071, 0.922279239, -0.361102521, -0.10543903, 0.376178026, 0.920528531),BottomSurface = Enum.SurfaceType.Smooth,})
  336. local mot = New("Motor",VLL,"mot",{Part0 = VLL,Part1 = VTorso,C0 = CFrame.new(0, 0, 0, 0.984823227, 0.137862027, -0.105439022, -0.0888316259, 0.922279298, 0.376178056, 0.149104908, -0.361102551, 0.920528591),C1 = CFrame.new(-0.162086487, -0.521272659, 0.0734844208, 0.979014099, 0.203679025, -0.0068100011, -0.138922885, 0.691457033, 0.708934069, 0.149103805, -0.693110347, 0.705241799),})
  337. local VRL = New("Part",Voodoo,"Right Leg",{Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300145775, 0.60029155, 0.300145775),CFrame = CFrame.new(17.2400646, 33.8107071, 11.9597893, 0.959730387, -0.238088086, 0.149103299, 0.276998103, 0.890439391, -0.36109513, -0.0467950329, 0.387855232, 0.920531631),BottomSurface = Enum.SurfaceType.Smooth,})
  338. local mot = New("Motor",VRL,"mot",{Part0 = VRL,Part1 = VTorso,C0 = CFrame.new(0, 0, 0, 0.959730327, 0.276998103, -0.0467950143, -0.238088101, 0.89043951, 0.387855232, 0.149103299, -0.361095101, 0.92053175),C1 = CFrame.new(0.178815842, -0.542732239, 0.0579204559, 0.979014099, 0.203679025, -0.0068100011, -0.138922885, 0.691457033, 0.708934069, 0.149103805, -0.693110347, 0.705241799),})
  339. local VRA = New("Part",Voodoo,"Right Arm",{Material = Enum.Material.SmoothPlastic,FormFactor = Enum.FormFactor.Symmetric,Size = Vector3.new(0.300145775, 0.60029155, 0.300145775),CFrame = CFrame.new(17.508316, 34.2938004, 12.3892946, 0.695788145, -0.716024339, -0.0564649031, 0.695248008, 0.651688695, 0.303202778, -0.180302992, -0.250221908, 0.951251626),})
  340. local mot = New("Motor",VRA,"mot",{Part0 = VRA,Part1 = VTorso,C0 = CFrame.new(0, 0, 0, 0.695788085, 0.695248067, -0.180303007, -0.71602428, 0.651688814, -0.250221968, -0.0564648844, 0.303202778, 0.951251745),C1 = CFrame.new(0.536909103, 0.0585308075, 0.0659856796, 0.979014099, 0.203679025, -0.0068100011, -0.138922885, 0.691457033, 0.708934069, 0.149103805, -0.693110347, 0.705241799),})
  341.  
  342. local VHum = NewInstance("Humanoid",Voodoo,{PlatformStand=true,Health=0,DisplayDistanceType=Enum.HumanoidDisplayDistanceType.None})
  343.  
  344. for _,v in next, Voodoo:GetDescendants() do
  345. NoClear[v] = true
  346. end
  347.  
  348. local knife = Part(Char,BrickColor.new'Medium stone grey',Enum.Material.SmoothPlastic,V3.N(.3,3,.5),CF.N(),false,false)
  349. Mesh(knife,Enum.MeshType.FileMesh,'rbxassetid://1245215297','rbxassetid://1245215354',V3.N(1.25,1.45,1.25))
  350.  
  351. if(PlayerSize ~= 1)then
  352. for _,v in next, Char:GetDescendants() do
  353. if(v:IsA'BasePart')then
  354. v.Size = v.Size * PlayerSize
  355. end
  356. end
  357. end
  358.  
  359. Nametag(C3.N(.75,.75,.75),"The Voodoo Master")
  360.  
  361. local gui = NewInstance("ScreenGui",PlrGui,{})
  362. local txt = NewInstance("TextLabel",gui,{TextStrokeTransparency=.3,TextStrokeColor3=C3.RGB(107,0,0),Font=Enum.Font.Antique,BackgroundTransparency=1,Size=UDim2.new(.48,0,.1,0),Position=UDim2.new(.279,0,.842,0),Text='Target:',TextColor3=C3.RGB(214,0,0),TextScaled=true,TextWrapped=true,})
  363. local ktxt = NewInstance("TextLabel",gui,{TextStrokeTransparency=.3,TextStrokeColor3=C3.RGB(107,0,0),Font=Enum.Font.Antique,BackgroundTransparency=1,Size=UDim2.new(.48,0,.1,0),Position=UDim2.new(.279,0,.742,0),Text='Target:',TextColor3=C3.RGB(214,0,0),TextScaled=true,TextWrapped=true,})
  364.  
  365. local Music = Sound(Char,MusicID,1,3,true,false,true)
  366. Music.Name = 'Music'
  367. for _,v in next, Hum:GetPlayingAnimationTracks() do
  368. v:Stop();
  369. end
  370.  
  371. pcall(game.Destroy,Char:FindFirstChild'Animate')
  372. pcall(game.Destroy,Hum:FindFirstChild'Animator')
  373. local LS = NewInstance('Motor',Char,{Part0=Torso,Part1=LArm,C0 = CF.N(-1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  374. local RS = NewInstance('Motor',Char,{Part0=Torso,Part1=RArm,C0 = CF.N(1.5 * PlayerSize,0.5 * PlayerSize,0),C1 = CF.N(0,.5 * PlayerSize,0)})
  375. local NK = NewInstance('Motor',Char,{Part0=Torso,Part1=Head,C0 = CF.N(0,1.5 * PlayerSize,0)})
  376. local LH = NewInstance('Motor',Char,{Part0=Torso,Part1=LLeg,C0 = CF.N(-.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  377. local RH = NewInstance('Motor',Char,{Part0=Torso,Part1=RLeg,C0 = CF.N(.5 * PlayerSize,-1 * PlayerSize,0),C1 = CF.N(0,1 * PlayerSize,0)})
  378. local RJ = NewInstance('Motor',Char,{Part0=Root,Part1=Torso})
  379.  
  380. local KW = NewInstance('Motor',Char,{Part0=LArm,Part1=knife,C0=CF.N(0,-1,0)*CF.A(M.R(90),0,0),C1=CF.N(0,-1,0)})
  381. local VW = NewInstance('Motor',Char,{Part0=RArm,Part1=VTorso,C0=CF.N(0,-.8,-.5)*CF.A(M.R(-43),0,0)})
  382.  
  383. local LSC0 = LS.C0
  384. local RSC0 = RS.C0
  385. local NKC0 = NK.C0
  386. local LHC0 = LH.C0
  387. local RHC0 = RH.C0
  388. local RJC0 = RJ.C0
  389. local ArtificialHB = IN("BindableEvent", script)
  390. ArtificialHB.Name = "Heartbeat"
  391.  
  392. script:WaitForChild("Heartbeat")
  393.  
  394. local tf = 0
  395. local allowframeloss = false
  396. local tossremainder = false
  397. local lastframe = tick()
  398. local frame = 1/Frame_Speed
  399. ArtificialHB:Fire()
  400.  
  401. game:GetService("RunService").Heartbeat:connect(function(s, p)
  402. tf = tf + s
  403. if tf >= frame then
  404. if allowframeloss then
  405. script.Heartbeat:Fire()
  406. lastframe = tick()
  407. else
  408. for i = 1, math.floor(tf / frame) do
  409. ArtificialHB:Fire()
  410. end
  411. lastframe = tick()
  412. end
  413. if tossremainder then
  414. tf = 0
  415. else
  416. tf = tf - frame * math.floor(tf / frame)
  417. end
  418. end
  419. end)
  420.  
  421. function swait(num)
  422. if num == 0 or num == nil then
  423. ArtificialHB.Event:wait()
  424. else
  425. for i = 0, num do
  426. ArtificialHB.Event:wait()
  427. end
  428. end
  429. end
  430. function NoobySphere(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,MeshId,Axis)
  431. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
  432. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  433. local Scale = 1
  434. local speeder = Speed
  435. if(Type == "Multiply")then
  436. Scale = 1*Inc
  437. elseif(Type == "Divide")then
  438. Scale = 1/Inc
  439. end
  440. coroutine.wrap(function()
  441. for i = 0,10/Lifetime,.1 do
  442.  
  443. if(Type == "Multiply")then
  444. Scale = Scale - 0.01*Inc/Lifetime
  445. elseif(Type == "Divide")then
  446. Scale = Scale - 0.01/Inc*Lifetime
  447. end
  448. speeder = speeder - 0.01*Speed*Lifetime
  449. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  450. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  451. if(Axis == 'x')then
  452. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, 0, 0)
  453. elseif(Axis == 'y')then
  454. fxM.Scale = fxM.Scale + Vector3.new(0, Scale*Lifetime, 0)
  455. elseif(Axis == 'z')then
  456. fxM.Scale = fxM.Scale + Vector3.new(0, 0, Scale*Lifetime)
  457. elseif(Axis == 'xyz')then
  458. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime,Scale*Lifetime,Scale*Lifetime)
  459. elseif(Axis == 'yz')then
  460. fxM.Scale = fxM.Scale + Vector3.new(0,Scale*Lifetime,Scale*Lifetime)
  461. elseif(Axis == 'xz')then
  462. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime,0,Scale*Lifetime)
  463. else
  464. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, 0)
  465. end
  466. if(fxP.Transparency >= 1)then break end
  467. swait()
  468. end
  469. fxP:destroy()
  470. end)()
  471. return fxP
  472. end
  473.  
  474. function NoobySphere2(Lifetime,Type,Pos,StartSize,Inc,Color,MeshId)
  475. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos,true,false)
  476. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Sphere),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  477.  
  478. local Scale = 1
  479. if(Type == "Multiply")then
  480. Scale = 1*Inc
  481. elseif(Type == "Divide")then
  482. Scale = 1/Inc
  483. end
  484. coroutine.wrap(function()
  485. for i = 0,10/Lifetime,.1 do
  486.  
  487. if(Type == "Multiply")then
  488. Scale = Scale - 0.01*Inc/Lifetime
  489. elseif(Type == "Divide")then
  490. Scale = Scale - 0.01/Inc*Lifetime
  491. end
  492. fxP.Transparency = fxP.Transparency + 0.01*Lifetime
  493. fxM.Scale = fxM.Scale + Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  494. swait()
  495. end
  496. fxP:destroy()
  497. end)()
  498. end
  499.  
  500. function NoobyBlock(Lifetime,Speed,Type,Pos,StartSize,Inc,Color,Range,Fade,MeshId)
  501. local fxP = Part(Effects,Color,Enum.Material.Neon,V3.N(1,1,1),Pos+Pos.lookVector*Range,true,false)
  502. local fxM = Mesh(fxP,(MeshId and Enum.MeshType.FileMesh or Enum.MeshType.Brick),(MeshId and "rbxassetid://"..MeshId or ""),"",StartSize,V3.N())
  503. local Scale = 1
  504. local speeder = Speed
  505. if(Type == "Multiply")then
  506. Scale = 1*Inc
  507. elseif(Type == "Divide")then
  508. Scale = 1/Inc
  509. end
  510. coroutine.wrap(function()
  511. for i = 0,10/Lifetime,.1 do
  512. if(Type == "Multiply")then
  513. Scale = Scale - 0.01*Inc/Lifetime
  514. elseif(Type == "Divide")then
  515. Scale = Scale - 0.01/Inc*Lifetime
  516. end
  517. if(Fade)then
  518. fxP.Transparency = i/(10/Lifetime)
  519. end
  520. speeder = speeder - 0.01*Speed*Lifetime/10
  521. fxP.CFrame = fxP.CFrame + fxP.CFrame.lookVector*speeder*Lifetime
  522. fxM.Scale = fxM.Scale - Vector3.new(Scale*Lifetime, Scale*Lifetime, Scale*Lifetime)
  523. swait()
  524. end
  525. fxP:destroy()
  526. end)()
  527. end
  528.  
  529. function Bezier(startpos, pos2, pos3, endpos, t)
  530. local A = startpos:lerp(pos2, t)
  531. local B = pos2:lerp(pos3, t)
  532. local C = pos3:lerp(endpos, t)
  533. local lerp1 = A:lerp(B, t)
  534. local lerp2 = B:lerp(C, t)
  535. local cubic = lerp1:lerp(lerp2, t)
  536. return cubic
  537. end
  538. function Puddle(hit,pos,norm,data)
  539. local material = data.Material or Enum.Material.SmoothPlastic
  540. local color = data.Color or BrickColor.new'Crimson'
  541. local size = data.Size or 1
  542.  
  543. if(hit.Name ~= 'BloodPuddle')then
  544. local Puddle = NewInstance('Part',workspace,{Material=material,BrickColor=color,Size=V3.N(size,.1,size),CFrame=CF.N(pos,pos+norm)*CF.A(90*M.P/180,0,0),Anchored=true,CanCollide=false,Archivable=false,Locked=true,Name='BloodPuddle'})
  545. local Cyl = NewInstance('CylinderMesh',Puddle,{Name='CylinderMesh'})
  546. BloodPuddles[Puddle] = 0
  547. else
  548. local cyl = hit:FindFirstChild'CylinderMesh'
  549. if(cyl)then
  550. BloodPuddles[hit] = 0
  551. cyl.Scale = cyl.Scale + V3.N(size,0,size)
  552. hit.Transparency = 0
  553. end
  554. end
  555. end
  556.  
  557. function Droplet(data)
  558. local Size = data.Size or 1
  559. local Color = data.Color or BrickColor.new'Crimson'
  560. local StudsPerFrame = data.Speed or 1
  561. local Shape = data.Shape or 'Ball'
  562. local Frames = (data.Frames or 160)+1
  563. local Pos = data.Origin or Root.CFrame
  564. local Direction = data.Direction or Root.CFrame.lookVector*100000
  565. local Material = data.Material or Enum.Material.SmoothPlastic
  566. local Drop = data.Drop or .05
  567. local Ignorelist = data.Ignorelist or nil
  568.  
  569. local Bullet = Part(Effects,Color,Material,V3.N(Size,Size,Size),Pos,true,false)
  570. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  571. if(Shape == 'Ball')then
  572. BMesh.MeshType = Enum.MeshType.Sphere
  573. elseif(Shape == 'Head')then
  574. BMesh.MeshType = Enum.MeshType.Head
  575. elseif(Shape == 'Cylinder')then
  576. BMesh.MeshType = Enum.MeshType.Cylinder
  577. end
  578.  
  579. coroutine.wrap(function()
  580. for i = 1, Frames do
  581. Pos = Pos * CF.N(0,-(Drop*i),0)
  582. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i)).p,StudsPerFrame)
  583. if(hit and (not hit.Parent or not hit.Parent:FindFirstChildOfClass'Humanoid' and not hit.Parent:IsA'Accessory'))then
  584. Puddle(hit,pos,norm,data)
  585. break;
  586. else
  587. Bullet.CFrame = CF.N(Pos.p,Direction)*CF.N(0,0,-(StudsPerFrame*i))
  588. end
  589. swait()
  590. end
  591. Bullet:destroy()
  592. end)()
  593. end
  594.  
  595. function SphereFX(duration,color,scale,pos,endScale,increment)
  596. return Effect{
  597. Effect='ResizeAndFade',
  598. Color=color,
  599. Size=scale,
  600. Mesh={MeshType=Enum.MeshType.Sphere},
  601. CFrame=pos,
  602. FXSettings={
  603. EndSize=endScale,
  604. EndIsIncrement=increment
  605. }
  606. }
  607. end
  608.  
  609. function BlastFX(duration,color,scale,pos,endScale,increment)
  610. return Effect{
  611. Effect='ResizeAndFade',
  612. Color=color,
  613. Size=scale,
  614. Mesh={MeshType=Enum.MeshType.FileMesh,MeshId='rbxassetid://20329976'},
  615. CFrame=pos,
  616. FXSettings={
  617. EndSize=endScale,
  618. EndIsIncrement=increment
  619. }
  620. }
  621. end
  622.  
  623. function BlockFX(duration,color,scale,pos,endScale,increment)
  624. return Effect{
  625. Effect='ResizeAndFade',
  626. Color=color,
  627. Size=scale,
  628. CFrame=pos,
  629. FXSettings={
  630. EndSize=endScale,
  631. EndIsIncrement=increment
  632. }
  633. }
  634. end
  635.  
  636. function ShootBullet(data)
  637. local Size = data.Size or V3.N(2,2,2)
  638. local Color = data.Color or BrickColor.new'Crimson'
  639. local StudsPerFrame = data.Speed or 10
  640. local Shape = data.Shape or 'Ball'
  641. local Frames = data.Frames or 160
  642. local Pos = data.Origin or Torso.CFrame
  643. local Direction = data.Direction or Mouse.Hit
  644. local Material = data.Material or Enum.Material.Neon
  645. local OnHit = data.HitFunction or function(hit,pos)
  646. Effect{
  647. Effect='ResizeAndFade',
  648. Color=Color,
  649. Size=V3.N(10,10,10),
  650. Mesh={MeshType=Enum.MeshType.Sphere},
  651. CFrame=CF.N(pos),
  652. FXSettings={
  653. EndSize=V3.N(.05,.05,.05),
  654. EndIsIncrement=true
  655. }
  656. }
  657. for i = 1, 5 do
  658. local angles = CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180))
  659. Effect{
  660. Effect='Fade',
  661. Frames=65,
  662. Size=V3.N(5,5,10),
  663. CFrame=CF.N(CF.N(pos)*angles*CF.N(0,0,-10).p,pos),
  664. Mesh = {MeshType=Enum.MeshType.Sphere},
  665. Material=Enum.Material.Neon,
  666. Color=Color,
  667. MoveDirection=CF.N(CF.N(pos)*angles*CF.N(0,0,-50).p,pos).p,
  668. }
  669. end
  670. end
  671.  
  672. local Bullet = Part(Effects,Color,Material,Size,Pos,true,false)
  673. local BMesh = Mesh(Bullet,Enum.MeshType.Brick,"","",V3.N(1,1,1),V3.N())
  674. if(Shape == 'Ball')then
  675. BMesh.MeshType = Enum.MeshType.Sphere
  676. elseif(Shape == 'Head')then
  677. BMesh.MeshType = Enum.MeshType.Head
  678. elseif(Shape == 'Cylinder')then
  679. BMesh.MeshType = Enum.MeshType.Cylinder
  680. end
  681.  
  682. coroutine.wrap(function()
  683. for i = 1, Frames+1 do
  684. local hit,pos,norm,dist = CastRay(Bullet.CFrame.p,CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame).p,StudsPerFrame)
  685. if(hit)then
  686. OnHit(hit,pos,norm,dist)
  687. break;
  688. else
  689. Bullet.CFrame = CF.N(Bullet.CFrame.p,Direction.p)*CF.N(0,0,-StudsPerFrame)
  690. end
  691. swait()
  692. end
  693. Bullet:destroy()
  694. end)()
  695.  
  696. end
  697.  
  698.  
  699. function Zap(data)
  700. local sCF,eCF = data.StartCFrame,data.EndCFrame
  701. assert(sCF,"You need a start CFrame!")
  702. assert(eCF,"You need an end CFrame!")
  703. local parts = data.PartCount or 15
  704. local zapRot = data.ZapRotation or {-5,5}
  705. local startThick = data.StartSize or 3;
  706. local endThick = data.EndSize or startThick/2;
  707. local color = data.Color or BrickColor.new'Electric blue'
  708. local delay = data.Delay or 35
  709. local delayInc = data.DelayInc or 0
  710. local lastLightning;
  711. local MagZ = (sCF.p - eCF.p).magnitude
  712. local thick = startThick
  713. local inc = (startThick/parts)-(endThick/parts)
  714.  
  715. for i = 1, parts do
  716. local pos = sCF.p
  717. if(lastLightning)then
  718. pos = lastLightning.CFrame*CF.N(0,0,MagZ/parts/2).p
  719. end
  720. delay = delay + delayInc
  721. local zapPart = Part(Effects,color,Enum.Material.Neon,V3.N(thick,thick,MagZ/parts),CF.N(pos),true,false)
  722. local posie = CF.N(pos,eCF.p)*CF.N(0,0,MagZ/parts).p+V3.N(M.RNG(unpack(zapRot)),M.RNG(unpack(zapRot)),M.RNG(unpack(zapRot)))
  723. if(parts == i)then
  724. local MagZ = (pos-eCF.p).magnitude
  725. zapPart.Size = V3.N(endThick,endThick,MagZ)
  726. zapPart.CFrame = CF.N(pos, eCF.p)*CF.N(0,0,-MagZ/2)
  727. Effect{Effect='ResizeAndFade',Size=V3.N(thick,thick,thick),CFrame=eCF*CF.A(M.RRNG(-180,180),M.RRNG(-180,180),M.RRNG(-180,180)),Color=color,Frames=delay*2,FXSettings={EndSize=V3.N(thick*8,thick*8,thick*8)}}
  728. else
  729. zapPart.CFrame = CF.N(pos,posie)*CF.N(0,0,MagZ/parts/2)
  730. end
  731.  
  732. lastLightning = zapPart
  733. Effect{Effect='Fade',Manual=zapPart,Frames=delay}
  734.  
  735. thick=thick-inc
  736.  
  737. end
  738. end
  739.  
  740. function Zap2(data)
  741. local Color = data.Color or BrickColor.new'Electric blue'
  742. local StartPos = data.Start or Torso.Position
  743. local EndPos = data.End or Mouse.Hit.p
  744. local SegLength = data.SegL or 2
  745. local Thicc = data.Thickness or 0.5
  746. local Fades = data.Fade or 45
  747. local Parent = data.Parent or Effects
  748. local MaxD = data.MaxDist or 200
  749. local Branch = data.Branches or false
  750. local Material = data.Material or Enum.Material.Neon
  751. local Raycasts = data.Raycasts or false
  752. local Offset = data.Offset or {0,360}
  753. local AddMesh = (data.Mesh == nil and true or data.Mesh)
  754. if((StartPos-EndPos).magnitude > MaxD)then
  755. EndPos = CF.N(StartPos,EndPos)*CF.N(0,0,-MaxD).p
  756. end
  757. local hit,pos,norm,dist=nil,EndPos,nil,(StartPos-EndPos).magnitude
  758. if(Raycasts)then
  759. hit,pos,norm,dist = CastRay(StartPos,EndPos,MaxD)
  760. end
  761. local segments = dist/SegLength
  762. local model = IN("Model",Parent)
  763. model.Name = 'Lightning'
  764. local Last;
  765. for i = 1, segments do
  766. local size = (segments-i)/25
  767. local prt = Part(model,Color,Material,V3.N(Thicc+size,SegLength,Thicc+size),CF.N(),true,false)
  768. if(AddMesh)then IN("CylinderMesh",prt) end
  769. if(Last and math.floor(segments) == i)then
  770. local MagZ = (Last.CFrame*CF.N(0,-SegLength/2,0).p-EndPos).magnitude
  771. prt.Size = V3.N(Thicc+size,MagZ,Thicc+size)
  772. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,EndPos)*CF.A(M.R(90),0,0)*CF.N(0,-MagZ/2,0)
  773. elseif(not Last)then
  774. prt.CFrame = CF.N(StartPos,pos)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  775. else
  776. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,CF.N(pos)*CF.A(M.R(M.RNG(0,360)),M.R(M.RNG(0,360)),M.R(M.RNG(0,360)))*CF.N(0,0,SegLength/3+(segments-i)).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  777. end
  778. Last = prt
  779. if(Branch)then
  780. local choice = M.RNG(1,7+((segments-i)*2))
  781. if(choice == 1)then
  782. local LastB;
  783. for i2 = 1,M.RNG(2,5) do
  784. local size2 = ((segments-i)/35)/i2
  785. local prt = Part(model,Color,Material,V3.N(Thicc+size2,SegLength,Thicc+size2),CF.N(),true,false)
  786. if(AddMesh)then IN("CylinderMesh",prt) end
  787. if(not LastB)then
  788. prt.CFrame = CF.N(Last.CFrame*CF.N(0,-SegLength/2,0).p,Last.CFrame*CF.N(0,-SegLength/2,0)*CF.A(0,0,M.RRNG(0,360))*CF.N(0,Thicc*7,0)*CF.N(0,0,-1).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  789. else
  790. prt.CFrame = CF.N(LastB.CFrame*CF.N(0,-SegLength/2,0).p,LastB.CFrame*CF.N(0,-SegLength/2,0)*CF.A(0,0,M.RRNG(0,360))*CF.N(0,Thicc*7,0)*CF.N(0,0,-1).p)*CF.A(M.R(90),0,0)*CF.N(0,-SegLength/2,0)
  791. end
  792. LastB = prt
  793. end
  794. end
  795. end
  796. end
  797. if(Fades > 0)then
  798. coroutine.wrap(function()
  799. for i = 1, Fades do
  800. for _,v in next, model:children() do
  801. if(v:IsA'BasePart')then
  802. v.Transparency = (i/Fades)
  803. end
  804. end
  805. swait()
  806. end
  807. model:destroy()
  808. end)()
  809. else
  810. S.Debris:AddItem(model,.01)
  811. end
  812. return {End=(Last and Last.CFrame*CF.N(0,-Last.Size.Y/2,0).p),Last=Last,Model=model}
  813. end
  814.  
  815. function Tween(obj,props,time,easing,direction,repeats,backwards)
  816. local info = TweenInfo.new(time or .5, easing or Enum.EasingStyle.Quad, direction or Enum.EasingDirection.Out, repeats or 0, backwards or false)
  817. local tween = S.TweenService:Create(obj, info, props)
  818.  
  819. tween:Play()
  820. end
  821.  
  822. function Effect(data)
  823. local FX = data.Effect or 'ResizeAndFade'
  824. local Parent = data.Parent or Effects
  825. local Color = data.Color or C3.N(0,0,0)
  826. local Size = data.Size or V3.N(1,1,1)
  827. local MoveDir = data.MoveDirection or nil
  828. local MeshData = data.Mesh or nil
  829. local SndData = data.Sound or nil
  830. local Frames = data.Frames or 45
  831. local Manual = data.Manual or nil
  832. local Material = data.Material or nil
  833. local CFra = data.CFrame or Torso.CFrame
  834. local Settings = data.FXSettings or {}
  835. local Shape = data.Shape or Enum.PartType.Block
  836. local Snd,Prt,Msh;
  837. local RotInc = data.RotInc or {0,0,0}
  838. if(typeof(RotInc) == 'number')then
  839. RotInc = {RotInc,RotInc,RotInc}
  840. end
  841. coroutine.wrap(function()
  842. if(Manual and typeof(Manual) == 'Instance' and Manual:IsA'BasePart')then
  843. Prt = Manual
  844. else
  845. Prt = Part(Parent,Color,Material,Size,CFra,true,false)
  846. Prt.Shape = Shape
  847. end
  848. if(typeof(MeshData) == 'table')then
  849. Msh = Mesh(Prt,MeshData.MeshType,MeshData.MeshId,MeshData.TextureId,MeshData.Scale,MeshData.Offset)
  850. elseif(typeof(MeshData) == 'Instance')then
  851. Msh = MeshData:Clone()
  852. Msh.Parent = Prt
  853. elseif(Shape == Enum.PartType.Block)then
  854. Msh = Mesh(Prt,Enum.MeshType.Brick)
  855. end
  856. if(typeof(SndData) == 'table' or typeof(SndData) == 'Instance')then
  857. Snd = Sound(Prt,SndData.SoundId,SndData.Pitch,SndData.Volume,false,false,true)
  858. end
  859. if(Snd)then
  860. repeat swait() until Snd.Playing and Snd.IsLoaded and Snd.TimeLength > 0
  861. Frames = Snd.TimeLength * Frame_Speed/Snd.Pitch
  862. end
  863. Size = (Msh and Msh.Scale or Size)
  864. local grow = Size-(Settings.EndSize or (Msh and Msh.Scale or Size)/2)
  865.  
  866. local MoveSpeed = nil;
  867. if(MoveDir)then
  868. MoveSpeed = (CFra.p - MoveDir).magnitude/Frames
  869. end
  870. if(FX ~= 'Arc')then
  871. for Frame = 1, Frames do
  872. if(FX == "Fade")then
  873. Prt.Transparency = (Frame/Frames)
  874. elseif(FX == "Resize")then
  875. if(not Settings.EndSize)then
  876. Settings.EndSize = V3.N(0,0,0)
  877. end
  878. if(Settings.EndIsIncrement)then
  879. if(Msh)then
  880. Msh.Scale = Msh.Scale + Settings.EndSize
  881. else
  882. Prt.Size = Prt.Size + Settings.EndSize
  883. end
  884. else
  885. if(Msh)then
  886. Msh.Scale = Msh.Scale - grow/Frames
  887. else
  888. Prt.Size = Prt.Size - grow/Frames
  889. end
  890. end
  891. elseif(FX == "ResizeAndFade")then
  892. if(not Settings.EndSize)then
  893. Settings.EndSize = V3.N(0,0,0)
  894. end
  895. if(Settings.EndIsIncrement)then
  896. if(Msh)then
  897. Msh.Scale = Msh.Scale + Settings.EndSize
  898. else
  899. Prt.Size = Prt.Size + Settings.EndSize
  900. end
  901. else
  902. if(Msh)then
  903. Msh.Scale = Msh.Scale - grow/Frames
  904. else
  905. Prt.Size = Prt.Size - grow/Frames
  906. end
  907. end
  908. Prt.Transparency = (Frame/Frames)
  909. end
  910. if(Settings.RandomizeCFrame)then
  911. Prt.CFrame = Prt.CFrame * CF.A(M.RRNG(-360,360),M.RRNG(-360,360),M.RRNG(-360,360))
  912. else
  913. Prt.CFrame = Prt.CFrame * CF.A(unpack(RotInc))
  914. end
  915. if(MoveDir and MoveSpeed)then
  916. local Orientation = Prt.Orientation
  917. Prt.CFrame = CF.N(Prt.Position,MoveDir)*CF.N(0,0,-MoveSpeed)
  918. Prt.Orientation = Orientation
  919. end
  920. swait()
  921. end
  922. Prt:destroy()
  923. else
  924. local start,third,fourth,endP = Settings.Start,Settings.Third,Settings.Fourth,Settings.End
  925. if(not Settings.End and Settings.Home)then endP = Settings.Home.CFrame end
  926. if(start and endP)then
  927. local quarter = third or start:lerp(endP, 0.25) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  928. local threequarter = fourth or start:lerp(endP, 0.75) * CF.N(M.RNG(-25,25),M.RNG(0,25),M.RNG(-25,25))
  929. for Frame = 0, 1, (Settings.Speed or 0.01) do
  930. if(Settings.Home)then
  931. endP = Settings.Home.CFrame
  932. end
  933. Prt.CFrame = Bezier(start, quarter, threequarter, endP, Frame)
  934. end
  935. if(Settings.RemoveOnGoal)then
  936. Prt:destroy()
  937. end
  938. else
  939. Prt:destroy()
  940. assert(start,"You need a start position!")
  941. assert(endP,"You need a start position!")
  942. end
  943. end
  944. end)()
  945. return Prt,Msh,Snd
  946. end
  947. function SoulSteal(whom)
  948. local torso = (whom:FindFirstChild'Head' or whom:FindFirstChild'Torso' or whom:FindFirstChild'UpperTorso' or whom:FindFirstChild'LowerTorso' or whom:FindFirstChild'HumanoidRootPart')
  949. print(torso)
  950. if(torso and torso:IsA'BasePart')then
  951. local Model = Instance.new("Model",Effects)
  952. Model.Name = whom.Name.."'s Soul"
  953. whom:BreakJoints()
  954. local Soul = Part(Model,BrickColor.new'Really red','Glass',V3.N(.5,.5,.5),torso.CFrame,true,false)
  955. Soul.Name = 'Head'
  956. NewInstance("Humanoid",Model,{Health=0,MaxHealth=0})
  957. Effect{
  958. Effect="Arc",
  959. Manual = Soul,
  960. FXSettings={
  961. Start=torso.CFrame,
  962. Home = Torso,
  963. RemoveOnGoal = true,
  964. }
  965. }
  966. local lastPoint = Soul.CFrame.p
  967.  
  968. for i = 0, 1, 0.01 do
  969. local point = CFrame.new(lastPoint, Soul.Position) * CFrame.Angles(-math.pi/2, 0, 0)
  970. local mag = (lastPoint - Soul.Position).magnitude
  971. Effect{
  972. Effect = "Fade",
  973. CFrame = point * CF.N(0, mag/2, 0),
  974. Size = V3.N(.5,mag+.5,.5),
  975. Color = Soul.BrickColor
  976. }
  977. lastPoint = Soul.CFrame.p
  978. swait()
  979. end
  980. for i = 1, 5 do
  981. Effect{
  982. Effect="Fade",
  983. Color = BrickColor.new'Really red',
  984. MoveDirection = (Torso.CFrame*CFrame.new(M.RNG(-40,40),M.RNG(-40,40),M.RNG(-40,40))).p
  985. }
  986. end
  987. end
  988. end
  989.  
  990. function MultiplyCF(cf,mult)
  991. local a,b,c,d,e,f,g,h,i,j,k,l = cf:components()
  992. return CF.N(a*mult,b*mult,c*mult,d*mult,e*mult,f*mult,g*mult,h*mult,i*mult,j*mult,k*mult,l*mult)
  993. end
  994.  
  995. function ResetVoodoo()
  996. for _,v in next, Voodoo:GetDescendants() do
  997. if(not NoClear[v])then
  998. v:destroy()
  999. end
  1000. end
  1001. VRA.Color = C3.RGB(163,162,165)
  1002. VLA.Color = C3.RGB(163,162,165)
  1003. VRL.Color = C3.RGB(163,162,165)
  1004. VLL.Color = C3.RGB(163,162,165)
  1005. VTorso.Color = C3.RGB(163,162,165)
  1006. VHead.Color = C3.RGB(163,162,165)
  1007. end
  1008.  
  1009. function ChangeTarget(who)
  1010. local h = who:FindFirstChildOfClass'Humanoid'
  1011. ResetVoodoo()
  1012. if(h and h.Health <= 0)then return end
  1013. Target = who
  1014. for _,v in next, who:children() do
  1015. if(v:IsA'Clothing' or v:IsA'CharacterMesh')then
  1016. v:Clone().Parent = Voodoo
  1017. elseif(v:FindFirstChild'face' and v.Name == 'Head')then
  1018. v.face:Clone().Parent = VHead
  1019. elseif(v:IsA'BodyColors')then
  1020. VTorso.BrickColor = v.TorsoColor
  1021. VHead.BrickColor = v.HeadColor
  1022. VLA.BrickColor = v.LeftArmColor
  1023. VRA.BrickColor = v.RightArmColor
  1024. VLL.BrickColor = v.LeftLegColor
  1025. VRL.BrickColor = v.RightLegColor
  1026. elseif(Voodoo:FindFirstChild(v.Name) and Voodoo[v.Name]:IsA'BasePart' and v:IsA'BasePart')then
  1027. Voodoo[v.Name].Color = v.Color
  1028. end
  1029. end
  1030. end
  1031.  
  1032. function CastRay(startPos,endPos,range,ignoreList)
  1033. local ray = Ray.new(startPos,(endPos-startPos).unit*range)
  1034. local part,pos,norm = workspace:FindPartOnRayWithIgnoreList(ray,ignoreList or {Char},false,true)
  1035. return part,pos,norm,(pos and (startPos-pos).magnitude)
  1036. end
  1037.  
  1038. function getRegion(point,range,ignore)
  1039. return workspace:FindPartsInRegion3WithIgnoreList(R3.N(point-V3.N(1,1,1)*range/2,point+V3.N(1,1,1)*range/2),ignore,100)
  1040. end
  1041.  
  1042. function clerp(startCF,endCF,alpha)
  1043. return startCF:lerp(endCF, alpha)
  1044. end
  1045.  
  1046. function GetTorso(char)
  1047. return char and (char:FindFirstChild'Torso' or char:FindFirstChild'UpperTorso' or char:FindFirstChild'LowerTorso' or char:FindFirstChild'HumanoidRootPart')
  1048. end
  1049.  
  1050. function ShowDamage(Pos, Text, Time, Color)
  1051. coroutine.wrap(function()
  1052. local Rate = (1 / Frame_Speed)
  1053. local Pos = (Pos or Vector3.new(0, 0, 0))
  1054. local Text = (Text or "")
  1055. local Time = (Time or 2)
  1056. local Color = (Color or Color3.new(1, 0, 1))
  1057. local EffectPart = NewInstance("Part",Effects,{
  1058. Material=Enum.Material.SmoothPlastic,
  1059. Reflectance = 0,
  1060. Transparency = 1,
  1061. BrickColor = BrickColor.new(Color),
  1062. Name = "Effect",
  1063. Size = Vector3.new(0,0,0),
  1064. Anchored = true,
  1065. CFrame = CF.N(Pos)
  1066. })
  1067. local BillboardGui = NewInstance("BillboardGui",EffectPart,{
  1068. Size = UDim2.new(1.25, 0, 1.25, 0),
  1069. Adornee = EffectPart,
  1070. })
  1071. local TextLabel = NewInstance("TextLabel",BillboardGui,{
  1072. BackgroundTransparency = 1,
  1073. Size = UDim2.new(1, 0, 1, 0),
  1074. Text = Text,
  1075. Font = "Bodoni",
  1076. TextColor3 = Color,
  1077. TextStrokeColor3 = Color3.new(0,0,0),
  1078. TextStrokeTransparency=0,
  1079. TextScaled = true,
  1080. })
  1081. S.Debris:AddItem(EffectPart, (Time))
  1082. EffectPart.Parent = workspace
  1083. delay(0, function()
  1084. Tween(EffectPart,{CFrame=CF.N(Pos)*CF.N(0,3,0)},Time,Enum.EasingStyle.Elastic,Enum.EasingDirection.Out)
  1085. local Frames = (Time / Rate)
  1086. for Frame = 1, Frames do
  1087. swait()
  1088. local Percent = (Frame / Frames)
  1089. TextLabel.TextTransparency = Percent
  1090. TextLabel.TextStrokeTransparency = Percent
  1091. end
  1092. if EffectPart and EffectPart.Parent then
  1093. EffectPart:Destroy()
  1094. end
  1095. end) end)()
  1096. end
  1097.  
  1098. function DealDamage(data)
  1099. local Who = data.Who;
  1100. local MinDam = data.MinimumDamage or 15;
  1101. local MaxDam = data.MaximumDamage or 30;
  1102. local MaxHP = data.MaxHP or 1e5;
  1103.  
  1104. local DB = data.Debounce or .2;
  1105.  
  1106. local CritData = data.Crit or {}
  1107. local CritChance = CritData.Chance or 0;
  1108. local CritMultiplier = CritData.Multiplier or 1;
  1109.  
  1110. local DamageEffects = data.DamageFX or {}
  1111. local DamageType = DamageEffects.Type or "Normal"
  1112. local DeathFunction = DamageEffects.DeathFunction
  1113.  
  1114. assert(Who,"Specify someone to damage!")
  1115.  
  1116. local Humanoid = Who:FindFirstChildOfClass'Humanoid'
  1117. local DoneDamage = M.RNG(MinDam,MaxDam) * (M.RNG(1,100) <= CritChance and CritMultiplier or 1)
  1118.  
  1119. local canHit = true
  1120. if(Humanoid)then
  1121. for _, p in pairs(Hit) do
  1122. if p[1] == Humanoid then
  1123. if(time() - p[2] <= DB) then
  1124. canHit = false
  1125. else
  1126. Hit[_] = nil
  1127. end
  1128. end
  1129. end
  1130. if(canHit)then
  1131. table.insert(Hit,{Humanoid,time()})
  1132. local HitTorso = GetTorso(Who)
  1133. local player = S.Players:GetPlayerFromCharacter(Who)
  1134. if(not player or player.UserId ~= 5719877 and player.UserId ~= 61573184 and player.UserId ~= 19081129)then
  1135. if(Humanoid.MaxHealth >= MaxHP and Humanoid.Health > 0)then
  1136. print'Got kill'
  1137. Humanoid.Health = 0;
  1138. Who:BreakJoints();
  1139. if(DeathFunction)then DeathFunction(Who,Humanoid) end
  1140. else
  1141. local c = Instance.new("ObjectValue",Hum)
  1142. c.Name = "creator"
  1143. c.Value = Plr
  1144. S.Debris:AddItem(c,0.35)
  1145. if(Who:FindFirstChild'Head' and Humanoid.Health > 0)then
  1146. ShowDamage((Who.Head.CFrame * CF.N(0, 0, (Who.Head.Size.Z / 2)).p+V3.N(0,1.5,0)+V3.N(M.RNG(-2,2),0,M.RNG(-2,2))), DoneDamage, 1.5, DamageColor.Color)
  1147. end
  1148. if(Humanoid.Health > 0 and Humanoid.Health-DoneDamage <= 0)then print'Got kill' if(DeathFunction)then DeathFunction(Who,Humanoid) end end
  1149. Humanoid.Health = Humanoid.Health - DoneDamage
  1150.  
  1151. if(DamageType == 'Knockback' and HitTorso)then
  1152. local up = DamageEffects.KnockUp or 25
  1153. local back = DamageEffects.KnockBack or 25
  1154. local origin = DamageEffects.Origin or Root
  1155. local decay = DamageEffects.Decay or .5;
  1156.  
  1157. local bfos = Instance.new("BodyVelocity",HitTorso)
  1158. bfos.P = 20000
  1159. bfos.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
  1160. bfos.Velocity = Vector3.new(0,up,0) + (origin.CFrame.lookVector * back)
  1161. S.Debris:AddItem(bfos,decay)
  1162. end
  1163. end
  1164. end
  1165. end
  1166. end
  1167. end
  1168.  
  1169. function Kill(dude)
  1170. Kills = Kills + 1
  1171. local t = GetTorso(dude)
  1172. local h = dude:FindFirstChildOfClass'Humanoid'
  1173. if(dude == Target)then
  1174. Target = nil
  1175. ResetVoodoo()
  1176. end
  1177. if(h)then Instance.new("BoolValue",h).Name = 'Killed' end
  1178. if(t)then
  1179. Sound(t,429400881,.7,3,false,true,true)
  1180. local pe = NewInstance("ParticleEmitter",t,{Size=NumberSequence.new(.2,5),Enabled=false,Texture='rbxassetid://771221224',Speed=NumberRange.new(15),VelocitySpread=90,Color=ColorSequence.new(C3.N(1,0,0)),Transparency=NumberSequence.new(0,1),ZOffset=.8,Acceleration=V3.N(0,-25,0),EmissionDirection=Enum.NormalId.Top,Lifetime=NumberRange.new(1),Rate=2500,Rotation=NumberRange.new(-100,100),RotSpeed=NumberRange.new(-100,100),})
  1181. pe:Emit(250)
  1182. NoobySphere(1,0,'Multiply',t.CFrame,V3.N(1,1,1),.1,C3.N(.4,0,0),0,nil,'xyz')
  1183. ResetVoodoo()
  1184. coroutine.wrap(function()
  1185. swait(60)
  1186. for i = 0, 1, .025 do
  1187. for _,v in next, dude:children() do
  1188. if(v:IsA'BasePart' and v.Name ~= 'HumanoidRootPart')then
  1189. v.Transparency = i
  1190. end
  1191. end
  1192. swait()
  1193. end
  1194. for _,v in next, dude:children() do
  1195. if(v:IsA'BasePart')then
  1196. v:destroy()
  1197. end
  1198. end
  1199. end)()
  1200. end
  1201. dude:breakJoints()
  1202. end
  1203.  
  1204. function Burn(dude)
  1205. local t = GetTorso(dude)
  1206. local h = dude:FindFirstChildOfClass'Humanoid'
  1207. if(t and h)then
  1208. local pe = NewInstance("ParticleEmitter",t,{Color=ColorSequence.new(C3.RGB(255,105,19),C3.RGB(255,255,127)),LightEmission=.8,Size=NumberSequence.new(1,0),Transparency=NumberSequence.new(0,1),Texture='rbxassetid://242102147',ZOffset=.3,EmissionDirection=Enum.NormalId.Top,Rate=1000,Lifetime=NumberRange.new(1),Speed=NumberRange.new(5)})
  1209. Sound(t,192104941,.8,5,false,true,true)
  1210. Sound(t,147758746,1,5,false,true,true)
  1211. coroutine.wrap(function()
  1212. repeat h.Health = h.Health - (h.MaxHealth/200) swait() until h.Health <= 0
  1213. dude:breakJoints()
  1214. if(not h:FindFirstChild'Killed')then Kills = Kills + 1 end
  1215. h:destroy()
  1216. if(dude == Target)then
  1217. Target = nil
  1218. ResetVoodoo()
  1219. end
  1220. NoobySphere(1,0,'Multiply',t.CFrame,V3.N(1,1,1),.1,C3.N(.4,0,0),0,nil,'xyz')
  1221. swait(60)
  1222. for i = 0, 1, .025 do
  1223. for _,v in next, dude:children() do
  1224. if(v:IsA'BasePart' and v.Name ~= 'HumanoidRootPart')then
  1225. v.Transparency = i
  1226. v.Color = C3.N(0,0,0)
  1227. v.Material = Enum.Material.Slate
  1228. end
  1229. end
  1230. swait()
  1231. end
  1232. for _,v in next, dude:children() do
  1233. if(v:IsA'BasePart')then
  1234. v:destroy()
  1235. end
  1236. end
  1237. end)()
  1238. end
  1239. end
  1240.  
  1241. function AOEDamage(where,range,options)
  1242. local hit = {}
  1243. for _,v in next, getRegion(where,range,{Char}) do
  1244. if(v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' and not hit[v.Parent])then
  1245. local callTable = {Who=v.Parent}
  1246. hit[v.Parent] = true
  1247. for _,v in next, options do callTable[_] = v end
  1248. DealDamage(callTable)
  1249. end
  1250. end
  1251. return hit
  1252. end
  1253.  
  1254. function AOEHeal(where,range,amount)
  1255. local healed = {}
  1256. for _,v in next, getRegion(where,range,{Char}) do
  1257. local hum = (v.Parent and v.Parent:FindFirstChildOfClass'Humanoid' or nil)
  1258. if(hum and not healed[hum])then
  1259. hum.Health = hum.Health + amount
  1260. if(v.Parent:FindFirstChild'Head' and hum.Health > 0)then
  1261. ShowDamage((v.Parent.Head.CFrame * CF.N(0, 0, (v.Parent.Head.Size.Z / 2)).p+V3.N(0,1.5,0)), "+"..amount, 1.5, BrickColor.new'Lime green'.Color)
  1262. end
  1263. end
  1264. end
  1265. end
  1266.  
  1267. function BurnANigga()
  1268. Attack = true
  1269. NeutralAnims = false
  1270. local Target = Target
  1271. for i = 0, 3, 0.1 do
  1272. swait()
  1273. local Alpha = .2
  1274. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21813294e-08, -0.0789605454, -7.5250864e-07, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1275. LH.C0 = LH.C0:lerp(CFrame.new(-0.499999344, -1.02113664, -2.92062759e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1276. RH.C0 = RH.C0:lerp(CFrame.new(0.499997526, -1.0211345, -1.49011612e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1277. LS.C0 = LS.C0:lerp(CFrame.new(-1.48020887, 0.396520793, -0.0840251297, 0.125036538, -0.110845402, 0.985939026, -0.0894355327, 0.988434374, 0.122468963, -0.988111138, -0.103490412, 0.113677412),Alpha)
  1278. RS.C0 = RS.C0:lerp(CFrame.new(1.49998105, 0.499911726, 1.90734863e-06, 0.902840197, -0.0815670565, 0.422160357, 0.389566094, -0.260352403, -0.883433402, 0.18197079, 0.962058306, -0.20328176),Alpha)
  1279. NK.C0 = NK.C0:lerp(CFrame.new(2.08616257e-06, 1.50000572, 1.21630728e-06, 0.102758601, -0.164331287, 0.981036484, -0.0197002441, 0.985729218, 0.167181715, -0.994509459, -0.0365053862, 0.098055318),Alpha)
  1280. end
  1281. knife.Transparency = 1
  1282. local Match = New("Model",Char,"Match",{})
  1283. local Handle = New("Part",Match,"Handle",{BrickColor = BrickColor.new("Brick yellow"),Material = Enum.Material.Wood,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.200000003, 1.2069068, 0.200000003),CFrame = CFrame.new(22.6316547, 30.6187859, 20.0125217, 0.836512625, -0.224143878, -0.499997824, 0.258817941, 0.965925753, 2.13843787e-08, 0.482960761, -0.129409477, 0.866021514),CanCollide = false,BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.843137, 0.772549, 0.603922),})
  1284.  
  1285. local FXHead = New("Part",Match,"FXHead",{BrickColor = BrickColor.new("Dusty Rose"),Material = Enum.Material.Concrete,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.144828811, 0.225289285, 0.144828811),CFrame = CFrame.new(22.4783554, 31.2793884, 19.9240131, 0.836508334, -0.224146977, -0.499995291, 0.258818597, 0.965925217, -3.05112985e-06, 0.482958704, -0.129407614, 0.866017997),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.639216, 0.294118, 0.294118),})
  1286. local Mesh = New("SpecialMesh",FXHead,"Mesh",{MeshType = Enum.MeshType.Sphere,})
  1287. local mot = New("Motor",FXHead,"mot",{Part0 = FXHead,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.836515725, 0.258820862, 0.482963055, -0.224147007, 0.965925395, -0.129407734, -0.499999642, -3.10509813e-06, 0.866025686),C1 = CFrame.new(-7.62939453e-06, 0.683908463, -9.53674316e-07, 0.836512625, 0.258817941, 0.482960761, -0.224143878, 0.965925753, -0.129409477, -0.499997824, 2.13843787e-08, 0.866021514),})
  1288. local MHead = New("Part",Match,"MHead",{BrickColor = BrickColor.new("Dusty Rose"),Material = Enum.Material.Concrete,FormFactor = Enum.FormFactor.Custom,Size = Vector3.new(0.0804604515, 0.0482763015, 0.0804604515),CFrame = CFrame.new(22.4945812, 31.209444, 19.9333839, 0.836508274, -0.224147394, -0.499995291, 0.258818835, 0.965925217, -3.39144185e-06, 0.482958704, -0.12940748, 0.866017878),BottomSurface = Enum.SurfaceType.Smooth,TopSurface = Enum.SurfaceType.Smooth,Color = Color3.new(0.639216, 0.294118, 0.294118),})
  1289. local mot = New("Motor",MHead,"mot",{Part0 = MHead,Part1 = Handle,C0 = CFrame.new(0, 0, 0, 0.836515665, 0.2588211, 0.482963055, -0.224147394, 0.965925276, -0.12940757, -0.499999642, -3.44821296e-06, 0.866025627),C1 = CFrame.new(-1.14440918e-05, 0.611497879, 1.90734863e-06, 0.836512625, 0.258817941, 0.482960761, -0.224143878, 0.965925753, -0.129409477, -0.499997824, 2.13843787e-08, 0.866021514),}) local Mesh = New("BlockMesh",Handle,"Mesh",{Scale = Vector3.new(0.400000006, 1, 0.400000006),})
  1290.  
  1291. local fire = NewInstance("ParticleEmitter",FXHead,{
  1292. Color = ColorSequence.new(C3.RGB(255,237,210),C3.RGB(255,170,0)),
  1293. LightEmission=1,
  1294. LightInfluence=0,
  1295. Size=NumberSequence.new{NumberSequenceKeypoint.new(0,0),NumberSequenceKeypoint.new(.3,.25),NumberSequenceKeypoint.new(.597,.312),NumberSequenceKeypoint.new(1,0)},
  1296. Texture='rbxassetid://242461088',
  1297. Transparency=NumberSequence.new{NumberSequenceKeypoint.new(0,1),NumberSequenceKeypoint.new(.199,.825),NumberSequenceKeypoint.new(.6,1),NumberSequenceKeypoint.new(1,1)},
  1298. ZOffset=.2,
  1299. Acceleration=V3.N(0,.75,0),
  1300. LockedToPart=true,
  1301. EmissionDirection=Enum.NormalId.Top,
  1302. Lifetime=NumberRange.new(.75),
  1303. Rate=50,
  1304. Speed=NumberRange.new(0)
  1305. })
  1306. local HW = NewInstance('Weld',Char,{Part0=LArm,Part1=Handle,C0=CF.N(0,-1,0)*CF.A(M.R(-90),0,0)})
  1307. for i = 0, 7, 0.1 do
  1308. swait()
  1309. local Alpha = .1
  1310. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21805193e-08, -0.0789600536, 1.08964741e-06, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1311. LH.C0 = LH.C0:lerp(CFrame.new(-0.499998987, -1.02113318, -1.04308128e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1312. RH.C0 = RH.C0:lerp(CFrame.new(0.499997348, -1.02113235, -5.96046448e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1313. LS.C0 = LS.C0:lerp(CFrame.new(-1.28626728, 0.457301795, 0.0561587811, 0.779788852, 0.617777467, -0.101375088, -0.0164614469, -0.141639799, -0.98978132, -0.625823021, 0.773489416, -0.100280359),Alpha)
  1314. RS.C0 = RS.C0:lerp(CFrame.new(1.49997759, 0.499910235, 1.22189522e-06, 0.902840197, -0.0815670565, 0.422160357, 0.389566094, -0.260352403, -0.883433402, 0.18197079, 0.962058306, -0.20328176),Alpha)
  1315. NK.C0 = NK.C0:lerp(CFrame.new(3.81376594e-06, 1.5000037, 3.7914142e-06, 0.561061919, 0.0163413882, 0.827610493, -0.0240478665, 0.999704778, -0.00343565643, -0.827422142, -0.0179739445, 0.561289608),Alpha)
  1316. end
  1317. for i = 0, 1, 0.1 do
  1318. swait()
  1319. local Alpha = .15
  1320. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21813294e-08, -0.0789605454, -7.5250864e-07, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1321. LH.C0 = LH.C0:lerp(CFrame.new(-0.499998987, -1.02113295, -1.96695328e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1322. RH.C0 = RH.C0:lerp(CFrame.new(0.499997348, -1.02113235, -5.96046448e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1323. LS.C0 = LS.C0:lerp(CFrame.new(-0.56364888, 0.845062912, -0.882486701, 0.556871235, -0.829850614, 0.0351991951, -0.0293087214, -0.0619851053, -0.99764663, 0.830079675, 0.554528773, -0.0588402748),Alpha)
  1324. RS.C0 = RS.C0:lerp(CFrame.new(1.49997818, 0.499908328, 1.7285347e-06, 0.902840197, -0.0815670565, 0.422160357, 0.389566094, -0.260352403, -0.883433402, 0.18197079, 0.962058306, -0.20328176),Alpha)
  1325. NK.C0 = NK.C0:lerp(CFrame.new(-2.10106373e-06, 1.50000787, -1.17905438e-06, 0.744260013, 0.016378643, -0.667686522, -0.000203326344, 0.999704778, 0.0242953151, 0.667887568, -0.0179455429, 0.74404341),Alpha)
  1326. end
  1327. Burn(Target)
  1328. for i = 0, 6, 0.1 do
  1329. swait()
  1330. local Alpha = .15
  1331. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21813294e-08, -0.0789605454, -7.5250864e-07, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1332. LH.C0 = LH.C0:lerp(CFrame.new(-0.499998987, -1.02113318, -1.04308128e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1333. RH.C0 = RH.C0:lerp(CFrame.new(0.499997348, -1.02113235, -5.96046448e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1334. LS.C0 = LS.C0:lerp(CFrame.new(-0.431874216, 0.854955196, -0.97056669, 0.117097467, -0.829880476, -0.545511901, -0.991014123, -0.0618889406, -0.118577883, 0.064643696, 0.554494739, -0.829670548),Alpha)
  1335. RS.C0 = RS.C0:lerp(CFrame.new(1.55841696, 0.530878901, -0.013287276, 0.846236467, 0.325094491, 0.422130316, 0.464434087, -0.0617963374, -0.883448958, -0.261117637, 0.943658531, -0.203279719),Alpha)
  1336. NK.C0 = NK.C0:lerp(CFrame.new(-3.43844295e-06, 1.50000417, 3.09199095e-07, 0.744260013, 0.016378643, -0.667686522, -0.000203326344, 0.999704778, 0.0242953151, 0.667887568, -0.0179455429, 0.74404341),Alpha)
  1337. end
  1338. for i = 0, 3, 0.1 do
  1339. swait()
  1340. local Alpha = .1
  1341. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21813294e-08, -0.0789605454, -7.5250864e-07, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1342. LH.C0 = LH.C0:lerp(CFrame.new(-0.499999344, -1.02113664, -2.92062759e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1343. RH.C0 = RH.C0:lerp(CFrame.new(0.499997526, -1.0211345, -1.49011612e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1344. LS.C0 = LS.C0:lerp(CFrame.new(-1.48020887, 0.396520793, -0.0840251297, 0.125036538, -0.110845402, 0.985939026, -0.0894355327, 0.988434374, 0.122468963, -0.988111138, -0.103490412, 0.113677412),Alpha)
  1345. RS.C0 = RS.C0:lerp(CFrame.new(1.49998105, 0.499911726, 1.90734863e-06, 0.902840197, -0.0815670565, 0.422160357, 0.389566094, -0.260352403, -0.883433402, 0.18197079, 0.962058306, -0.20328176),Alpha)
  1346. NK.C0 = NK.C0:lerp(CFrame.new(2.08616257e-06, 1.50000572, 1.21630728e-06, 0.102758601, -0.164331287, 0.981036484, -0.0197002441, 0.985729218, 0.167181715, -0.994509459, -0.0365053862, 0.098055318),Alpha)
  1347. end
  1348. knife.Transparency = 0
  1349. Match:destroy()
  1350. Attack = false
  1351. NeutralAnims = true
  1352.  
  1353. end
  1354.  
  1355. function KillVoodoo()
  1356. Attack = true
  1357. NeutralAnims = false
  1358. WalkSpeed = 0
  1359. local Target = Target
  1360. for i = 0, 1.9, 0.1 do
  1361. swait()
  1362. local Alpha = .1
  1363. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21813294e-08, -0.0789605454, -7.5250864e-07, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1364. LH.C0 = LH.C0:lerp(CFrame.new(-0.500003159, -1.02113652, -1.87754631e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1365. RH.C0 = RH.C0:lerp(CFrame.new(0.500005007, -1.02113163, -4.17232513e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1366. LS.C0 = LS.C0:lerp(CFrame.new(-1.30809402, 0.707052946, -0.212298125, 0.324948817, 0.857990444, 0.397815555, 0.638829648, -0.509305477, 0.576632023, 0.697354972, 0.0667604953, -0.71360743),Alpha)
  1367. RS.C0 = RS.C0:lerp(CFrame.new(1.17349327, 0.596340418, -0.226585925, 0.880390525, 0.216107711, 0.422145128, 0.452990264, -0.119689628, -0.883444428, -0.140392065, 0.969003797, -0.203268766),Alpha)
  1368. NK.C0 = NK.C0:lerp(CFrame.new(4.42750752e-06, 1.50000238, 4.23006713e-06, 0.827343702, 0.0163316131, -0.561455429, -0.00340057909, 0.99970448, 0.024066925, 0.56168288, -0.0180016756, 0.827154636),Alpha)
  1369. end
  1370. local gay = Plrs:GetPlayerFromCharacter(Target)
  1371. if(not gay or Plr.UserId == 5719877 or gay.UserId ~= 5719877 and gay.UserId ~= 19909695 and gay.UserId ~= 33104243)then
  1372. Kill(Target)
  1373. for i = 0, 1.2, 0.1 do
  1374. swait()
  1375. local Alpha = .2
  1376. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21813294e-08, -0.0789605454, -7.5250864e-07, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1377. LH.C0 = LH.C0:lerp(CFrame.new(-0.500003159, -1.02113652, -1.87754631e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1378. RH.C0 = RH.C0:lerp(CFrame.new(0.500005007, -1.02113163, -4.17232513e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1379. LS.C0 = LS.C0:lerp(CFrame.new(-0.765871823, 0.875704765, -0.619495153, 0.324934751, -0.587293684, 0.74128288, 0.638849139, -0.441647798, -0.629935622, 0.697343588, 0.678255379, 0.231685296),Alpha)
  1380. RS.C0 = RS.C0:lerp(CFrame.new(1.17349327, 0.596340418, -0.226585925, 0.880390525, 0.216107711, 0.422145128, 0.452990264, -0.119689628, -0.883444428, -0.140392065, 0.969003797, -0.203268766),Alpha)
  1381. NK.C0 = NK.C0:lerp(CFrame.new(4.42750752e-06, 1.50000238, 4.23006713e-06, 0.827343702, 0.0163316131, -0.561455429, -0.00340057909, 0.99970448, 0.024066925, 0.56168288, -0.0180016756, 0.827154636),Alpha)
  1382. end
  1383. for i = 0, .9, 0.1 do
  1384. swait()
  1385. local Alpha = .2
  1386. RJ.C0 = RJ.C0:lerp(CFrame.new(-2.16149999e-07, -0.0789605081, -7.11530447e-07, 0.999989629, 2.49221875e-06, 1.27442513e-06, 2.73494675e-06, 0.965795875, 0.259301215, 5.88124067e-07, -0.259299994, 0.965785265),Alpha)
  1387. LH.C0 = LH.C0:lerp(CFrame.new(-0.500001371, -1.02113628, -5.54323196e-06, 0.996183932, 0.0871576071, 5.81604752e-07, -0.0841722414, 0.96212101, -0.259300053, -0.0225983392, 0.258314729, 0.965785265),Alpha)
  1388. RH.C0 = RH.C0:lerp(CFrame.new(0.49999243, -1.02113175, -5.66244125e-06, 0.996184528, -0.0871521831, 5.94584947e-07, 0.0841772109, 0.962120533, -0.259300053, 0.0226008799, 0.25831449, 0.965785265),Alpha)
  1389. LS.C0 = LS.C0:lerp(CFrame.new(-1.34198368, 0.383808315, 0.099660337, 0.324967146, 0.259882778, 0.90930742, 0.638826787, -0.76930356, -0.00842937827, 0.697345734, 0.583627462, -0.416016668),Alpha)
  1390. RS.C0 = RS.C0:lerp(CFrame.new(1.1734798, 0.596339762, -0.226573557, 0.880385041, 0.216106832, 0.422140598, 0.452991217, -0.1196879, -0.883443415, -0.140389711, 0.968996823, -0.203268081),Alpha)
  1391. NK.C0 = NK.C0:lerp(CFrame.new(4.42750752e-06, 1.50000238, 4.23006713e-06, 0.827343702, 0.0163316131, -0.561455429, -0.00340057909, 0.99970448, 0.024066925, 0.56168288, -0.0180016756, 0.827154636),Alpha)
  1392. end
  1393. else
  1394. for i = 0, 1.2, 0.1 do
  1395. swait()
  1396. local Alpha = .2
  1397. RJ.C0 = RJ.C0:lerp(CFrame.new(-7.21813294e-08, -0.0789605454, -7.5250864e-07, 0.999996543, 8.32955209e-07, 4.22970459e-07, 9.11652307e-07, 0.965796173, 0.259301841, 1.96043004e-07, -0.259301394, 0.965792596),Alpha)
  1398. LH.C0 = LH.C0:lerp(CFrame.new(-0.500003159, -1.02113652, -1.87754631e-06, 0.996191025, 0.0871564001, 1.89523718e-07, -0.0841739103, 0.962121129, -0.259301454, -0.0225992389, 0.258315265, 0.965792596),Alpha)
  1399. RH.C0 = RH.C0:lerp(CFrame.new(0.500005007, -1.02113163, -4.17232513e-07, 0.996191263, -0.087154597, 2.02503998e-07, 0.0841755792, 0.96212101, -0.259301454, 0.0226000845, 0.258315176, 0.965792596),Alpha)
  1400. LS.C0 = LS.C0:lerp(CFrame.new(-0.765871823, 0.875704765, -0.619495153, 0.324934751, -0.587293684, 0.74128288, 0.638849139, -0.441647798, -0.629935622, 0.697343588, 0.678255379, 0.231685296),Alpha)
  1401. RS.C0 = RS.C0:lerp(CFrame.new(1.34997082, 0.691436887, -0.00414918363, 0.308846682, -0.493054748, -0.813330948, -0.13198103, 0.824647903, -0.550033391, 0.94190836, 0.277220637, 0.18961516),Alpha)
  1402. NK.C0 = NK.C0:lerp(CFrame.new(4.42750752e-06, 1.50000238, 4.23006713e-06, 0.827343702, 0.0163316131, -0.561455429, -0.00340057909, 0.99970448, 0.024066925, 0.56168288, -0.0180016756, 0.827154636),Alpha)
  1403. end
  1404. for i = 0, .9, 0.1 do
  1405. swait()
  1406. local Alpha = .2
  1407. RJ.C0 = RJ.C0:lerp(CFrame.new(-2.16149999e-07, -0.0789605081, -7.11530447e-07, 0.999989629, 2.49221875e-06, 1.27442513e-06, 2.73494675e-06, 0.965795875, 0.259301215, 5.88124067e-07, -0.259299994, 0.965785265),Alpha)
  1408. LH.C0 = LH.C0:lerp(CFrame.new(-0.500001371, -1.02113628, -5.54323196e-06, 0.996183932, 0.0871576071, 5.81604752e-07, -0.0841722414, 0.96212101, -0.259300053, -0.0225983392, 0.258314729, 0.965785265),Alpha)
  1409. RH.C0 = RH.C0:lerp(CFrame.new(0.49999243, -1.02113175, -5.66244125e-06, 0.996184528, -0.0871521831, 5.94584947e-07, 0.0841772109, 0.962120533, -0.259300053, 0.0226008799, 0.25831449, 0.965785265),Alpha)
  1410. LS.C0 = LS.C0:lerp(CFrame.new(-1.34198368, 0.383808315, 0.099660337, 0.324967146, 0.259882778, 0.90930742, 0.638826787, -0.76930356, -0.00842937827, 0.697345734, 0.583627462, -0.416016668),Alpha)
  1411. RS.C0 = RS.C0:lerp(CFrame.new(1.34997082, 0.691436887, -0.00414918363, 0.308846682, -0.493054748, -0.813330948, -0.13198103, 0.824647903, -0.550033391, 0.94190836, 0.277220637, 0.18961516),Alpha)
  1412. NK.C0 = NK.C0:lerp(CFrame.new(4.42750752e-06, 1.50000238, 4.23006713e-06, 0.827343702, 0.0163316131, -0.561455429, -0.00340057909, 0.99970448, 0.024066925, 0.56168288, -0.0180016756, 0.827154636),Alpha)
  1413. end
  1414. end
  1415. WalkSpeed = 8
  1416. Attack = false
  1417. NeutralAnims = true
  1418. end
  1419.  
  1420. Mouse.KeyDown:connect(function(k)
  1421. if(Attack)then return end
  1422. if(k == 'q')then
  1423. local targ = (Mouse.Target and Mouse.Target.Parent)
  1424. if(targ and GetTorso(targ) and targ:FindFirstChildOfClass'Humanoid')then
  1425. ChangeTarget(targ)
  1426. end
  1427. elseif(k == 'z' and Target)then
  1428. BurnANigga()
  1429. end
  1430. end)
  1431.  
  1432. Mouse.Button1Down:connect(function()
  1433. if(Attack)then return end
  1434. if(Target)then
  1435. KillVoodoo()
  1436. else
  1437. end
  1438. end)
  1439.  
  1440. coroutine.wrap(function()
  1441. while true do
  1442. if(M.RNG(1,350) == 1 and not Glitching)then
  1443. for i = 1, M.RNG(100,300)/100 do
  1444. local TP = Music.TimePosition
  1445. Glitching = true
  1446. swait(M.RNG(15,30))
  1447. Glitching = false
  1448. Music.TimePosition = TP
  1449. end
  1450. end
  1451. swait()
  1452. end
  1453. end)()
  1454.  
  1455. local Texts = {"JaidenAnimations","TheOdd1sOut","SomeThingElseYT","Young Yong Tales","GingerPale","It's Alex Clark"}
  1456. coroutine.wrap(function()
  1457. while true do
  1458. if(M.RNG(1,65) >= (Glitching and 5 or 40))then
  1459. local frame = NewInstance("Frame",gui,{Size=UDim2.new(.26,0,.07,0),BackgroundTransparency=1,Position=UDim2.new(M.RNG(0,100)/100,0,M.RNG(0,100)/100,0)})
  1460. local fat = Texts[M.RNG(1,#Texts)]
  1461. local toxt = "";
  1462. for i = 1, #fat do
  1463. if(M.RNG(1,2) == 1)then
  1464. toxt = toxt..fat:sub(i,i):lower()
  1465. else
  1466. toxt = toxt..fat:sub(i,i)
  1467. end
  1468. end
  1469. local rot = M.RNG(-15,15)
  1470. local txt = NewInstance('TextLabel',frame,{Rotation=rot,TextTransparency=1,Text=toxt,TextColor3=C3.N(M.RNG(50,100)/100,0,0),FontSize=M.RNG(8,14),Font=Enum.Font.Antique})
  1471. coroutine.wrap(function()
  1472. for i = 1, 30 do
  1473. swait()
  1474. txt.Rotation = rot+M.RNG(-15,15)
  1475. txt.TextTransparency = txt.TextTransparency - 1/30
  1476. end
  1477. for i = 1, 30 do
  1478. swait()
  1479. txt.Rotation = rot+M.RNG(-15,15)
  1480. txt.TextTransparency = txt.TextTransparency + 1/30
  1481. end
  1482. txt:destroy()
  1483. end)()
  1484. end
  1485. swait()
  1486. end
  1487. end)()
  1488.  
  1489. local FT,RA,LA,RL,LL = Instance.new("BlockMesh"),Instance.new("BlockMesh"),Instance.new("BlockMesh"),Instance.new("BlockMesh"),Instance.new("BlockMesh")
  1490.  
  1491. local Meshes = {FT,RA,LA,RL,LL}
  1492.  
  1493. for _,v in next, Char:GetDescendants() do
  1494. if(v:IsA'DataModelMesh')then
  1495. table.insert(Meshes,v)
  1496. end
  1497. end
  1498.  
  1499. while true do
  1500. swait()
  1501.  
  1502. if(Target and (not Target.Parent or not Target:FindFirstChildOfClass'Humanoid' or Target:FindFirstChildOfClass'Humanoid'.Health <= 0))then
  1503. Target = nil
  1504. ResetVoodoo()
  1505. end
  1506. txt.Rotation = M.RNG(-150,150)/150
  1507. txt.Text = 'Target: '..(Target and Target.Name or '')
  1508.  
  1509. ktxt.Rotation = M.RNG(-150,150)/150
  1510. ktxt.Text = 'Kills: '..Kills
  1511.  
  1512. Hum.DisplayDistanceType = Enum.HumanoidDisplayDistanceType.None
  1513.  
  1514. VHum.PlatformStand = true
  1515. VHum:ChangeState(Enum.HumanoidStateType.Physics)
  1516. VHum:SetStateEnabled(Enum.HumanoidStateType.Dead,false)
  1517.  
  1518. Sine = Sine + Change
  1519. if(not Music or not Music.Parent)then
  1520. local tp = (Music and Music.TimePosition)
  1521. Music = Sound(Char,MusicID,1,10,true,false,true)
  1522. Music.Name = 'Music'
  1523. Music.TimePosition = tp
  1524. end
  1525. Music.SoundId = "rbxassetid://"..MusicID
  1526. Music.Parent = Torso
  1527. Music.Pitch = (Glitching and M.RNG(55,175)/100 or 1)
  1528. Music.Volume = 3
  1529. if(not Muted)then
  1530. Music:Resume()
  1531. else
  1532. Music:Pause()
  1533. end
  1534.  
  1535. if(God)then
  1536. Hum.MaxHealth = 1e100
  1537. Hum.Health = 1e100
  1538. if(not Char:FindFirstChildOfClass'ForceField')then IN("ForceField",Char).Visible = false end
  1539. Hum.Name = M.RNG()*100
  1540. end
  1541.  
  1542. local hitfloor,posfloor = workspace:FindPartOnRay(Ray.new(Root.CFrame.p,((CFrame.new(Root.Position,Root.Position - Vector3.new(0,1,0))).lookVector).unit * (4*PlayerSize)), Char)
  1543.  
  1544. local Walking = (math.abs(Root.Velocity.x) > 1 or math.abs(Root.Velocity.z) > 1)
  1545. local State = (Hum.PlatformStand and 'Paralyzed' or Hum.Sit and 'Sit' or not hitfloor and Root.Velocity.y < -1 and "Fall" or not hitfloor and Root.Velocity.y > 1 and "Jump" or hitfloor and Walking and (Hum.WalkSpeed < 24 and "Walk" or "Run") or hitfloor and "Idle")
  1546. if(not Effects or not Effects.Parent)then
  1547. Effects = IN("Model",Char)
  1548. Effects.Name = "Effects"
  1549. end
  1550. if(State == 'Run')then
  1551. local wsVal = 16 / (Hum.WalkSpeed/16)
  1552. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  1553. Change = 1
  1554. RH.C1 = RH.C1:lerp(CF.N(0,1-.5*M.C(Sine/wsVal)/2,.5*M.C(Sine/wsVal)/2)*CF.A(M.R(25-15*M.C(Sine/wsVal))+-M.S(Sine/wsVal)/2,0,0),Alpha)
  1555. LH.C1 = LH.C1:lerp(CF.N(0,1+.5*M.C(Sine/wsVal)/2,-.5*M.C(Sine/wsVal)/2)*CF.A(M.R(25+15*M.C(Sine/wsVal))+M.S(Sine/wsVal)/2,0,0),Alpha)
  1556. elseif(State == 'Walk')then
  1557. local wsVal = 7 / (Hum.WalkSpeed/16)
  1558. local Alpha = math.min(.15 * (Hum.WalkSpeed/16),1)
  1559. Change = 1
  1560. RH.C1 = RH.C1:lerp(CF.N(0,1-.5*M.C(Sine/wsVal)/2,.5*M.C(Sine/wsVal)/2)*CF.A(M.R(15-5*M.C(Sine/wsVal))+-M.S(Sine/wsVal)/2,0,0),Alpha)
  1561. LH.C1 = LH.C1:lerp(CF.N(0,1+.5*M.C(Sine/wsVal)/2,-.5*M.C(Sine/wsVal)/2)*CF.A(M.R(15+5*M.C(Sine/wsVal))+M.S(Sine/wsVal)/2,0,0),Alpha)
  1562. else
  1563. RH.C1 = RH.C1:lerp(CF.N(0,1,0),.2)
  1564. LH.C1 = LH.C1:lerp(CF.N(0,1,0),.2)
  1565. end
  1566. Hum.WalkSpeed = WalkSpeed
  1567. if(Remove_Hats)then Instance.ClearChildrenOfClass(Char,"Accessory",true) end
  1568. if(Remove_Clothing)then Instance.ClearChildrenOfClass(Char,"Clothing",true) Instance.ClearChildrenOfClass(Char,"ShirtGraphic",true) end
  1569.  
  1570. if(Glitching)then
  1571. Hum.CameraOffset = V3.N(M.RNG(-25,25)/100,M.RNG(-25,25)/100,M.RNG(-25,25)/100)
  1572. elseif(not Hum:FindFirstChild'CamShaking')then
  1573. Hum.CameraOffset = V3.N(0,0,0)
  1574. end
  1575.  
  1576. if(Glitching)then
  1577. RA.Parent = RArm
  1578. LA.Parent = LArm
  1579. FT.Parent = Torso
  1580. RL.Parent = RLeg
  1581. LL.Parent = LLeg
  1582. for _,v in next, Meshes do
  1583. v.Offset = V3.N(M.RNG(-25,25)/100,M.RNG(-25,25)/100,M.RNG(-25,25)/100)
  1584. end
  1585.  
  1586. RLeg.Material = Enum.Material.Neon
  1587. LLeg.Material = Enum.Material.Neon
  1588. RArm.Material = Enum.Material.Neon
  1589. LArm.Material = Enum.Material.Neon
  1590. Torso.Material = Enum.Material.Neon
  1591. Head.Material = Enum.Material.Neon
  1592. else
  1593. for _,v in next, Meshes do
  1594. v.Offset = V3.N(0,0,0)
  1595. end
  1596. RA.Parent = nil
  1597. LA.Parent = nil
  1598. FT.Parent = nil
  1599. RL.Parent = nil
  1600. LL.Parent = nil
  1601. RLeg.Material = Enum.Material.SmoothPlastic
  1602. LLeg.Material = Enum.Material.SmoothPlastic
  1603. RArm.Material = Enum.Material.SmoothPlastic
  1604. LArm.Material = Enum.Material.SmoothPlastic
  1605. Torso.Material = Enum.Material.SmoothPlastic
  1606. Head.Material = Enum.Material.SmoothPlastic
  1607. end
  1608.  
  1609. if(NeutralAnims)then
  1610. if(State == 'Idle')then
  1611. local Alpha = .1
  1612. Change = 1
  1613. NK.C0 = NK.C0:lerp(NKC0*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),.3)
  1614. if(M.RNG(1,45) == 45)then
  1615. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,0)*CF.A(M.RRNG(15,65),M.RRNG(-35,35),0),1)
  1616. end
  1617. if(not Glitching)then
  1618. RJ.C0 = RJ.C0:lerp(RJC0*CF.N(0,-.1+.05*M.C(Sine/24),0)*CF.A(M.R(-15),0,0),Alpha)
  1619. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(15),0,M.R(-5-5*M.C(Sine/24))),Alpha)
  1620. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(105-5*M.C(Sine/24)),M.R(25),M.R(5+5*M.C(Sine/16))),Alpha)
  1621. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0-.05*M.C(Sine/24),0)*CF.A(M.R(15),0,M.R(-5)),Alpha)
  1622. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0-.05*M.C(Sine/24),0)*CF.A(M.R(15),0,M.R(5)),Alpha)
  1623. else
  1624. RJ.C0 = RJ.C0:lerp(RJC0*CF.N(0,-.2+.1*M.C(Sine/24),0)*CF.A(M.R(-45),0,0),1)
  1625. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,.1*M.C(Sine/24),0)*CF.A(M.R(180),0,M.R(25)+M.RRNG(-3,3)),1)
  1626. RS.C0 = RS.C0:lerp(RSC0*CF.N(0,.1*M.C(Sine/24),0)*CF.A(M.R(180),0,M.R(-25)+M.RRNG(-3,3)),1)
  1627. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,-.1*M.C(Sine/24),0)*CF.A(M.R(45),0,M.R(-5)),1)
  1628. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,-.1*M.C(Sine/24),0)*CF.A(M.R(45),0,M.R(5)),1)
  1629. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,-.2)*CF.A(M.R(-25),0,0)*CF.A(M.RRNG(-5,5),M.RRNG(-3,3),0),.1)
  1630. end
  1631.  
  1632. elseif(State == 'Run')then
  1633. local wsVal = 7 / (Hum.WalkSpeed/16)
  1634. local Alpha = math.min(.2 * (Hum.WalkSpeed/16),1)
  1635. RJ.C0 = RJ.C0:lerp(CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(-15+2.5*M.C(Sine/(wsVal/2))),M.R(8*M.C(Sine/wsVal)),0),Alpha)
  1636. NK.C0 = NK.C0:lerp(NKC0,Alpha)
  1637. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,0-.3*M.S(Sine/wsVal))*CF.A(M.R(0+45*M.S(Sine/wsVal)),0,M.R(-5)),Alpha)
  1638. RS.C0 = RS.C0:lerp(RSC0*CF.N(0,0,0+.3*M.S(Sine/wsVal))*CF.A(M.R(0-45*M.S(Sine/wsVal)),0,M.R(5)),Alpha)
  1639. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  1640. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0+.1*M.C(Sine/(wsVal/2)),0)*CF.A(0,-M.R(4*M.C(Sine/wsVal)),0),Alpha)
  1641. elseif(State == 'Walk')then
  1642. local wsVal = 7 / (Hum.WalkSpeed/16)
  1643. local Alpha = math.min(.15 * (Hum.WalkSpeed/16),1)
  1644. NK.C0 = NK.C0:lerp(NKC0*CF.A(0,-Head.RotVelocity.y/75,0)*CF.A(M.RRNG(-5,5),M.RRNG(-5,5),M.RRNG(-5,5)),.3)
  1645. if(M.RNG(1,45) == 45)then
  1646. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,0)*CF.A(M.RRNG(15,65),M.RRNG(-35,35),0),1)
  1647. end
  1648. if(not Glitching)then
  1649. RJ.C0 = RJ.C0:lerp(CF.N(0,-.075+.1*M.C(Sine/(wsVal/2)+-M.S(Sine/(wsVal/2))/7),0)*CF.A(M.R(-15-2.5*M.C(Sine/(wsVal/2))),M.R(4*M.C(Sine/wsVal)),Root.RotVelocity.y/75),Alpha)
  1650. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,0,-.27*M.C(Sine/wsVal))*CF.A(M.R(28*M.C(Sine/wsVal)),0,M.R(-5-7*M.S(Sine/wsVal))+LArm.RotVelocity.y/35),Alpha)
  1651. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(105-5*M.C(Sine/24)),M.R(25),M.R(5+5*M.C(Sine/16))),Alpha)
  1652. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(15+2.5*M.C(Sine/(wsVal/2))),M.R(-4*M.C(Sine/wsVal)),0),Alpha)
  1653. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,0-.1*M.C(Sine/(wsVal/2)),0)*CF.A(M.R(15+2.5*M.C(Sine/(wsVal/2))),M.R(-4*M.C(Sine/wsVal)),0),Alpha)
  1654. else
  1655. RJ.C0 = RJ.C0:lerp(RJC0*CF.N(0,-.2+.1*M.C(Sine/24),0)*CF.A(M.R(-45),0,0),1)
  1656. LS.C0 = LS.C0:lerp(LSC0*CF.N(0,.1*M.C(Sine/24),0)*CF.A(M.R(180),0,M.R(25)+M.RRNG(-3,3)),1)
  1657. RS.C0 = RS.C0:lerp(RSC0*CF.N(0,.1*M.C(Sine/24),0)*CF.A(M.R(180),0,M.R(-25)+M.RRNG(-3,3)),1)
  1658. LH.C0 = LH.C0:lerp(LHC0*CF.N(0,-.1*M.C(Sine/24),0)*CF.A(M.R(45),0,M.R(-5)),1)
  1659. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,-.1*M.C(Sine/24),0)*CF.A(M.R(45),0,M.R(5)),1)
  1660. NK.C0 = NK.C0:lerp(NKC0*CF.N(0,0,-.2)*CF.A(M.R(-25),0,0)*CF.A(M.RRNG(-5,5),M.RRNG(-3,3),0),.1)
  1661. end
  1662.  
  1663. elseif(State == 'Jump')then
  1664. local Alpha = .1
  1665. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  1666. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)),Alpha)
  1667. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)),Alpha)
  1668. RJ.C0 = RJ.C0:lerp(RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  1669. NK.C0 = NK.C0:lerp(NKC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  1670. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  1671. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  1672. elseif(State == 'Fall')then
  1673. local Alpha = .1
  1674. local idk = math.min(math.max(Root.Velocity.Y/50,-M.R(90)),M.R(90))
  1675. LS.C0 = LS.C0:lerp(LSC0*CF.A(M.R(-5),0,M.R(-90)+idk),Alpha)
  1676. RS.C0 = RS.C0:lerp(RSC0*CF.A(M.R(-5),0,M.R(90)-idk),Alpha)
  1677. RJ.C0 = RJ.C0:lerp(RJC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  1678. NK.C0 = NK.C0:lerp(NKC0*CF.A(math.min(math.max(Root.Velocity.Y/100,-M.R(45)),M.R(45)),0,0),Alpha)
  1679. LH.C0 = LH.C0:lerp(LHC0*CF.A(0,0,M.R(-5)),Alpha)
  1680. RH.C0 = RH.C0:lerp(RHC0*CF.N(0,1,-1)*CF.A(M.R(-5),0,M.R(5)),Alpha)
  1681. elseif(State == 'Paralyzed')then
  1682. elseif(State == 'Sit')then
  1683. end
  1684. end
  1685.  
  1686. for i,v in next, BloodPuddles do
  1687. local mesh = i:FindFirstChild'CylinderMesh'
  1688. BloodPuddles[i] = v + 1
  1689. if(not mesh or i.Transparency >= 1)then
  1690. i:destroy()
  1691. BloodPuddles[i] = nil
  1692. elseif(v >= Frame_Speed*4)then
  1693. local trans = (v-Frame_Speed*4)/(Frame_Speed*2)
  1694. i.Transparency = trans
  1695. if(mesh.Scale.Z > 0)then
  1696. mesh.Scale = mesh.Scale-V3.N(.05,0,.05)
  1697. end
  1698. else
  1699. i.Transparency = 0
  1700. end
  1701. end
  1702. end
Advertisement
Add Comment
Please, Sign In to add comment