Advertisement
DarkScriptZEditors

Test Fe

Nov 21st, 2018
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 74.53 KB | None | 0 0
  1. --[[Hell toast by vlad20020--
  2. Im a bit crappy scripter but its ok.
  3. --]]
  4. --https://github.com/Mokiros/roblox-FE-compatibility
  5. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  6. local Player,game,owner = owner,game
  7. local RealPlayer = Player
  8. do
  9. print("FE Compatibility code by Mokiros")
  10. local rp = RealPlayer
  11. script.Parent = rp.Character
  12.  
  13. --RemoteEvent for communicating
  14. local Event = Instance.new("RemoteEvent")
  15. Event.Name = "UserInput_Event"
  16.  
  17. --Fake event to make stuff like Mouse.KeyDown work
  18. local function fakeEvent()
  19. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  20. t.connect = t.Connect
  21. return t
  22. end
  23.  
  24. --Creating fake input objects with fake variables
  25. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  26. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  27. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  28. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  29. end}
  30. --Merged 2 functions into one by checking amount of arguments
  31. CAS.UnbindAction = CAS.BindAction
  32.  
  33. --This function will trigger the events that have been :Connect()'ed
  34. local function te(self,ev,...)
  35. local t = m[ev]
  36. if t and t._fakeEvent then
  37. for _,f in pairs(t.Functions) do
  38. f(...)
  39. end
  40. end
  41. end
  42. m.TrigEvent = te
  43. UIS.TrigEvent = te
  44.  
  45. Event.OnServerEvent:Connect(function(plr,io)
  46. if plr~=rp then return end
  47. m.Target = io.Target
  48. m.Hit = io.Hit
  49. if not io.isMouse then
  50. local b = io.UserInputState == Enum.UserInputState.Begin
  51. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  52. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  53. end
  54. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  55. return m:TrigEvent(b and "Button2Down" or "Button2Up")
  56. end
  57. for _,t in pairs(CAS.Actions) do
  58. for _,k in pairs(t.Keys) do
  59. if k==io.KeyCode then
  60. t.Function(t.Name,io.UserInputState,io)
  61. end
  62. end
  63. end
  64. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  65. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  66. end
  67. end)
  68. Event.Parent = NLS([==[
  69. local Player = game:GetService("Players").LocalPlayer
  70. local Event = script:WaitForChild("UserInput_Event")
  71. local Mouse = Player:GetMouse()
  72. local UIS = game:GetService("UserInputService")
  73. local input = function(io,a)
  74. if a then return end
  75. --Since InputObject is a client-side instance, we create and pass table instead
  76. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  77. end
  78. UIS.InputBegan:Connect(input)
  79. UIS.InputEnded:Connect(input)
  80. local h,t
  81. --Give the server mouse data 30 times every second, but only if the values changed
  82. --If player is not moving their mouse, client won't fire events
  83. while wait(1/30) do
  84. if h~=Mouse.Hit or t~=Mouse.Target then
  85. h,t=Mouse.Hit,Mouse.Target
  86. Event:FireServer({isMouse=true,Target=t,Hit=h})
  87. end
  88. end]==],Player.Character)
  89.  
  90. ----Sandboxed game object that allows the usage of client-side methods and services
  91. --Real game object
  92. local _rg = game
  93.  
  94. --Metatable for fake service
  95. local fsmt = {
  96. __index = function(self,k)
  97. local s = rawget(self,"_RealService")
  98. if s then
  99. return typeof(s[k])=="function"
  100. and function(_,...)return s[k](s,...)end or s[k]
  101. end
  102. end,
  103. __newindex = function(self,k,v)
  104. local s = rawget(self,"_RealService")
  105. if s then s[k]=v end
  106. end
  107. }
  108. local function FakeService(t,RealService)
  109. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  110. return setmetatable(t,fsmt)
  111. end
  112.  
  113. --Fake game object
  114. local g = {
  115. GetService = function(self,s)
  116. return rawget(self,s) or _rg:GetService(s)
  117. end,
  118. Players = FakeService({
  119. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  120. },"Players"),
  121. UserInputService = FakeService(UIS,"UserInputService"),
  122. ContextActionService = FakeService(CAS,"ContextActionService"),
  123. RunService = FakeService({
  124. _btrs = {},
  125. RenderStepped = _rg:GetService("RunService").Heartbeat,
  126. BindToRenderStep = function(self,name,_,fun)
  127. self._btrs[name] = self.Heartbeat:Connect(fun)
  128. end,
  129. UnbindFromRenderStep = function(self,name)
  130. self._btrs[name]:Disconnect()
  131. end,
  132. },"RunService")
  133. }
  134. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  135. g.service = g.GetService
  136. FakeService(g,game)
  137. --Changing owner to fake player object to support owner:GetMouse()
  138. game,owner = g,g.Players.LocalPlayer
  139. end
  140. plr = game.Players.LocalPlayer
  141. char = plr.Character
  142. ra = char["Right Arm"]
  143. la = char["Left Arm"]
  144. rl = char["Right Leg"]
  145. ll = char["Left Leg"]
  146. h = char.Head
  147. t = char.Torso
  148. mouse = plr:GetMouse()
  149. tweens = game:GetService("TweenService")
  150. print("Made by vlad20020")
  151. warn([[
  152. Q - I still dont know how to name this attack
  153. E - Toast smash
  154. R - Just bit the toast
  155. T - Dead sky
  156. F - Punch
  157. G - Stomp(Works only if dud stunned)
  158. Z - Sit
  159. X - Teleport
  160. C - Crouch + Half invisiblity
  161. V - *CrUnCh*
  162. Y - Throw Toast(Heals)
  163. N - Fix character
  164. B - Summon an explosion(Aim)
  165. H - Cut the throat(Target)
  166. J - Kaboom!
  167. U - Bread Grenade
  168. N - Decapitate(Target)
  169. M - T-Pose dance
  170. 1 - Randomly change music
  171. Click - Slap]])
  172. ---------------
  173. rs = t["Right Shoulder"]
  174. ls = t["Left Shoulder"]
  175. rh = t["Right Hip"]
  176. lh = t["Left Hip"]
  177. nec = t.Neck
  178. rut = char.HumanoidRootPart
  179. rutj = rut.RootJoint
  180. hum = char.Humanoid
  181. using = false
  182. eating = false
  183. it = Instance.new
  184. ---I took it from shackluster`s script lol---
  185. ------Part Creation------
  186. function CreatePart( parent, material, reflectance, transparency, brickcolor, name, size, anchor,cancollide)
  187. local NEWPART = Instance.new("Part")
  188. NEWPART.Reflectance = reflectance
  189. NEWPART.Transparency = transparency
  190. NEWPART.CanCollide = false
  191. NEWPART.Locked = true
  192. NEWPART.Anchored = true
  193. NEWPART.CanCollide = cancollide
  194. if anchor == false then
  195. NEWPART.Anchored = false
  196. end
  197. NEWPART.BrickColor = BrickColor.new(tostring(brickcolor))
  198. NEWPART.Name = name
  199. NEWPART.Size = size
  200. NEWPART.Position = t.Position
  201. NEWPART.Material = material
  202. NEWPART:BreakJoints()
  203. NEWPART.Parent = parent
  204. return NEWPART
  205. end
  206. ------Mesh Creation------
  207. function createMesh(MESH, PARENT, MESHTYPE, MESHID, TEXTUREID, SCALE, OFFSET)
  208. local NEWMESH = it(MESH)
  209. if MESH == "SpecialMesh" then
  210. NEWMESH.MeshType = MESHTYPE
  211. if MESHID ~= "nil" and MESHID ~= "" then
  212. NEWMESH.MeshId = "http://www.roblox.com/asset/?id="..MESHID
  213. end
  214. if TEXTUREID ~= "nil" and TEXTUREID ~= "" then
  215. NEWMESH.TextureId = "http://www.roblox.com/asset/?id="..TEXTUREID
  216. end
  217. end
  218. NEWMESH.Offset = OFFSET or Vector3.new(0, 0, 0)
  219. NEWMESH.Scale = SCALE
  220. NEWMESH.Parent = PARENT
  221. return NEWMESH
  222. end
  223. ------Weld Creation------
  224. function CreateWeld(Type, parent, part0, part1, C0, C1)
  225. local newweld = Instance.new(Type)
  226. newweld.Part0 = part0
  227. newweld.Part1 = part1
  228. newweld.C0 = C0
  229. newweld.C1 = C1
  230. newweld.Parent = parent
  231. return newweld
  232. end
  233. ---------Ragdoll--------
  234. at2 = t:findFirstChild("RightCollarAttachment") at2.Position = Vector3.new(1,.8,0)
  235. at = Instance.new("Attachment",ra) at.Name = "oof" at.Position = Vector3.new(-.5,.8,0)
  236. balls = Instance.new("BallSocketConstraint",ra) balls.Attachment0 = at2 balls.Attachment1 = at
  237. at21 = t:findFirstChild("LeftCollarAttachment") at21.Position = Vector3.new(-1,.8,0) at21.Orientation = Vector3.new(0,180,0)
  238. at1 = Instance.new("Attachment",la) at.Name = "oof" at1.Position = Vector3.new(.5,.8,0)
  239. balls1 = Instance.new("BallSocketConstraint",la) balls1.Attachment0 = at21 balls1.Attachment1 = at1
  240. nek = Instance.new("Attachment",h) nek.Position = Vector3.new(0,-.5,0) nball = Instance.new("BallSocketConstraint",h) nball.Attachment0 = nek nball.Attachment1 = t:findFirstChild("NeckAttachment")
  241. owihatedis = Instance.new("Attachment",t) owihatedis.Position = Vector3.new(.6,-1,0) oihd = Instance.new("Attachment",rl) oihd.Position = Vector3.new(.1,1,0) oww = Instance.new("BallSocketConstraint",rl) oww.Attachment0 = owihatedis oww.Attachment1 = oihd
  242. owihatedis2 = Instance.new("Attachment",t) owihatedis2.Position = Vector3.new(-.6,-1,0) oihd2 = Instance.new("Attachment",ll) oihd2.Position = Vector3.new(-.1,1,0) oww2 = Instance.new("BallSocketConstraint",ll) oww2.Attachment0 = owihatedis2 oww2.Attachment1 = oihd2
  243. hum.Died:connect(function()
  244. mus:Destroy()
  245. rut:Destroy()
  246. local dying = Instance.new("Sound",char) dying.Volume = 5 dying.SoundId = "rbxassetid://475550904" dying:Play() hum.DisplayDistanceType = "None"
  247. local boom = Instance.new("Explosion",char) boom.Position = t.Position h.face.Texture = "http://www.roblox.com/asset/?id=41679365" boom.BlastRadius = 1
  248. ouch = Instance.new("Model",char) ouch1 = Instance.new("Part",ouch) ouch1.CFrame = h.CFrame ouch1.Size = Vector3.new(.4,.4,.4) ouch1.CanCollide = false ouch1.Name = "Head" ouch.Name = "OW" ouch2 = Instance.new("Humanoid",ouch) ouch3 = Instance.new("Attachment",ouch1) ouch4 = Instance.new("BallSocketConstraint",ouch1) ouch4.Attachment0 = ouch3 ouch4.Attachment1 = h.FaceCenterAttachment
  249. end)
  250. ----------------
  251. local a13 = Instance.new("Sound",t) a13.SoundId = "rbxassetid://0" a13.Looped = true a13.Volume = 0 a13:Play()
  252. local bochka = Instance.new("Sound",t) bochka.Looped = true bochka.SoundId = "rbxassetid://1287970292" bochka.Volume = 0 bochka:Play()
  253. local tripoloski = Instance.new("Sound",t) tripoloski.Looped = true tripoloski.SoundId = "rbxassetid://689628356" tripoloski.Volume = 0 tripoloski:Play()
  254. local cm = Instance.new("Sound",t) cm.Looped = true cm.EmitterSize = 30 cm.Volume = 0 cm.SoundId = "rbxassetid://213693358" cm:Play()
  255. hum.MaxHealth = "inf" hum.Health = "inf" ff = Instance.new("ForceField",char) ff.Visible = false char.Animate.idle.Animation2:Destroy()
  256. mus = Instance.new("Sound",t) mus.SoundId = "rbxassetid://1722896592" mus.Volume = 2 mus.Looped = true mus:Play()
  257. --------------
  258. brda = Instance.new("Part",char) brda.Transparency = 1 brda.CanCollide = false brda.Size = Vector3.new(1.248, 1.264, 0.16) brdam = Instance.new("SpecialMesh",brda) brdam.Scale = Vector3.new(0.003, 0.003, 0.003) brdam.MeshType = "FileMesh" brdam.MeshId = "rbxassetid://1614924885" brdam.TextureId = "rbxassetid://1614940093" brdaw = Instance.new("Weld",ra) brdaw.Part0 = ra brdaw.Part1 = brda brdaw.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,3) brdaw.C0 = brdaw.C0 * CFrame.new(0,1.3,0)
  259. ------Uuhh... Idk--------
  260. mouse.KeyDown:connect(function(key)
  261. if key == "q" and not using then
  262. using = true
  263. function die(hit)
  264. if hit.Parent ~= nil then
  265. local hum = hit.Parent:findFirstChildOfClass("Humanoid")
  266. if hum ~= nil then
  267. if hit.Parent == char then
  268.  
  269. else
  270. hit:Destroy()
  271. end
  272. end
  273. end
  274. end
  275. aaa = Instance.new("Sound",t) aaa.SoundId = "rbxassetid://176238381" aaa.Volume = 2 aaa:Play()
  276. bread = Instance.new("Part",workspace) bread.CanCollide = false bread.Anchored = true bread.Position = mouse.Hit.p bread.CFrame = bread.CFrame * CFrame.new(0,30,0) bread.Size = Vector3.new(15.6, 15.8, 4) bread.Orientation = Vector3.new(90, 180, 0)
  277. bc = bread.Touched:connect(die)
  278. bmesh = Instance.new("SpecialMesh",bread) bmesh.MeshType = "FileMesh" bmesh.MeshId = "rbxassetid://1614924885" bmesh.TextureId = "rbxassetid://1614940093" bmesh.Scale = Vector3.new(0.035, 0.035, 0.035)
  279. hum.WalkSpeed = 0 hum.JumpPower = 0
  280. for i = 1,10 do
  281. bread.CFrame = bread.CFrame * CFrame.new(0,0,3)
  282. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  283. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  284. rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  285. lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  286. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  287. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  288. wait()
  289. end
  290. for i = 1,30 do
  291. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  292. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  293. rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  294. lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  295. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  296. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(1,1,1)
  297. wait()
  298. end
  299. aaa:Destroy()
  300. hum.WalkSpeed = 16 hum.JumpPower = 50
  301. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  302. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  303. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  304. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  305. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  306. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  307. for i = 1,10 do
  308. bread.Transparency = bread.Transparency + .1
  309. wait()
  310. end
  311. bread:Destroy()
  312. wait(.1)
  313. using = false
  314. end
  315. end)
  316. ----------Toast smash-----------
  317. mouse.KeyDown:connect(function(key)
  318. if key == "e" and not using then
  319. using = true
  320. function die(hit)
  321. if hit.Parent ~= nil then
  322. local hum = hit.Parent:findFirstChildOfClass("Humanoid")
  323. if hum ~= nil then
  324. if hit.Parent == char then
  325.  
  326. else
  327. bd = Instance.new("Decal",hit) bd.Texture = "http://www.roblox.com/asset/?id=718043865" bd.Face = "Front" bd.Transparency = .5
  328. bd1 = Instance.new("Decal",hit) bd1.Texture = "http://www.roblox.com/asset/?id=718043865" bd1.Face = "Back" bd1.Transparency = .5
  329. bd2 = Instance.new("Decal",hit) bd2.Texture = "http://www.roblox.com/asset/?id=718043865" bd2.Face = "Right" bd2.Transparency = .5
  330. bd3 = Instance.new("Decal",hit) bd3.Texture = "http://www.roblox.com/asset/?id=718043865" bd3.Face = "Left" bd3.Transparency = .5
  331. bd4 = Instance.new("Decal",hit) bd4.Texture = "http://www.roblox.com/asset/?id=718043865" bd4.Face = "Bottom" bd4.Transparency = .5
  332. bd5 = Instance.new("Decal",hit) bd5.Texture = "http://www.roblox.com/asset/?id=718043865" bd5.Face = "Top" bd5.Transparency = .5
  333. bme = Instance.new("SpecialMesh",hit) bme.MeshType = "Brick"
  334. hit.Size = hit.Size * Vector3.new(1,.5,1)
  335. for i = 1,10 do
  336. hit.Transparency = hit.Transparency +.1
  337. wait()
  338. end
  339. hit:Destroy()
  340. end
  341. end
  342. end
  343. end
  344. hum.WalkSpeed = 0 hum.JumpPower = 0
  345. for i = 1,5 do
  346. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.3,-.2,.6) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.3,.2,-.6) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(-.07,0,0) rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.1)
  347. wait()
  348. end
  349. han = Instance.new("Part",workspace) han.Size = Vector3.new(2,2,1) han.Transparency = 1 han.CanCollide = false hw = Instance.new("Weld",han) hw.Part0 = han hw.Part1 = t
  350. mb = Instance.new("Part",workspace) mb.Transparency = 1 mb.CFrame = t.CFrame rut.Anchored = true mb.Size = Vector3.new(15.6, 15.8, 2) mm = Instance.new("SpecialMesh",mb) mm.MeshType = "FileMesh" mm.MeshId = "rbxassetid://1614924885" mm.TextureId = "rbxassetid://1614940093" mm.Scale = Vector3.new(0.035, 0.035, 0.035) mw = Instance.new("Weld",mb) mw.Part0 = mb mw.Part1 = han mw.C0 = mw.C0 * CFrame.new(0,-20,0)
  351. for i = 1,10 do
  352. mb.Transparency = mb.Transparency -.1
  353. wait()
  354. end
  355. mc = mb.Touched:connect(die)
  356. for i = 1,5 do
  357. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(.2,0,0) rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.24) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.24) hw.C0 = hw.C0 * CFrame.fromEulerAnglesXYZ(.18,0,0) hw.C0 = hw.C0 * CFrame.new(0,1.2,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.3,-.2,-.2) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.3,-.1,.1) nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
  358. wait()
  359. end
  360. han:Destroy() mb.Anchored = true
  361. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  362. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  363. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  364. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  365. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  366. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  367. hum.WalkSpeed = 16 hum.JumpPower = 50 rut.Anchored = false
  368. wait(.5)
  369. mc:disconnect(die)
  370. wait(.5)
  371. for i = 1,10 do
  372. mb.Transparency = mb.Transparency +.1
  373. wait()
  374. end
  375. mb:Destroy()
  376. wait(.1)
  377. using = false
  378. end
  379. end)
  380. -----------Slap----------
  381. function slap()
  382. if mouse.Button1Down and not using then
  383. using = true
  384. function dmg(hit1)
  385. if hit1.Parent ~= nil then
  386. local hum = hit1.Parent:findFirstChildOfClass("Humanoid")
  387. local faic = hit1.Parent.Head:findFirstChildOfClass("Decal")
  388. if hum ~= nil then
  389. if hit1.Parent == char then
  390.  
  391. else
  392. hum.MaxHealth = 100
  393. hum.Health = hum.Health -5
  394. hum.PlatformStand = true faic.Texture = "rbxassetid://1383895045"
  395. slap = Instance.new("Sound",brda) slap.Volume = 3 slap.SoundId = "rbxassetid://511340819"
  396. slap:Play()
  397. ogad = Instance.new("Weld",workspace) ogad.Part0 = hum.Parent.Torso ogad.Part1 = hum.Parent["Left Arm"] ogad.C0 = ogad.C0 * CFrame.fromEulerAnglesXYZ(0,0,4.7) ogad.C0 = ogad.C0 * CFrame.new(-.5,-2,0) ogad1 = Instance.new("Weld",workspace) ogad1.Part0 = hum.Parent.Torso ogad1.Part1 = hum.Parent["Right Arm"] ogad1.C0 = ogad1.C0 * CFrame.fromEulerAnglesXYZ(0,9.4,4.7) ogad1.C0 = ogad1.C0 * CFrame.new(-.5,-2,0) ogad2 = Instance.new("Weld",workspace) ogad2.Part0 = hum.Parent.Torso ogad2.Part1 = hum.Parent["Left Leg"] ogad2.C0 = ogad2.C0 * CFrame.new(-1,-1.6,0) ogad3 = Instance.new("Weld",workspace) ogad3.Part0 = hum.Parent.Torso ogad3.Part1 = hum.Parent["Right Leg"] ogad3.C0 = ogad3.C0 * CFrame.new(1,-1.6,0)
  398. ow = Instance.new("Decal",hum.Parent.Head) ow.Texture = "http://www.roblox.com/asset/?id=140321302" ow.Color3 = Color3.fromRGB(255,50,50) ow.Transparency = .5
  399. oof = Instance.new("Weld",workspace) oof.Part0 = hum.Parent.Head oof.Part1 = hum.Parent.Torso oof.C0 = oof.C0 * CFrame.new(0,-1.5,0) oof.C0 = oof.C0 * CFrame.fromEulerAnglesXYZ(0,.5,0)
  400. wait(1)
  401. slap:Destroy()
  402. hum.WalkSpeed = 0 hum.JumpPower = 0
  403. wait(4)
  404. hum.PlatformStand = false
  405. wait(3)
  406. hum.WalkSpeed = 16 hum.JumpPower = 50
  407. end
  408. end
  409. end
  410. end
  411. brda.Transparency = 0
  412. for i = 1,5 do
  413. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
  414. wait()
  415. end
  416. for i = 1,5 do
  417. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.25,0,0)
  418. wait()
  419. end
  420. brda.CanCollide = true
  421. dmgg = brda.Touched:connect(dmg)
  422. for i = 1,5 do
  423. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.4,0,0)
  424. wait()
  425. end
  426. dmgg:disconnect(dmg)
  427. for i = 1,5 do
  428. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,0,-.33)
  429. wait()
  430. end
  431. brda.Transparency = 1
  432. brda.CanCollide = false
  433. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  434. using = false
  435. end
  436. end
  437. mouse.Button1Down:connect(slap)
  438. -------------Dead Sky----------
  439. mouse.KeyDown:connect(function(key)
  440. if key == "t" and not using then
  441. using = true
  442. function die1(hit)
  443. if hit.Parent ~= nil then
  444. local hum = hit.Parent:findFirstChildOfClass("Humanoid")
  445. if hum ~= nil then
  446. hit:Destroy()
  447. end
  448. end
  449. end
  450. for i = 1,6 do
  451. mus.Volume = mus.Volume -.5
  452. wait(.2)
  453. end
  454. hum.WalkSpeed = 70 hum.JumpPower = 120
  455. hum.DisplayDistanceType = "None" hum.HealthDisplayType = "AlwaysOff"
  456. game.Lighting.TimeOfDay = 0 game.Lighting.FogColor = Color3.fromRGB(0,0,0) game.Lighting.FogEnd = 20
  457. h.face.Transparency = 1
  458. eh = Instance.new("Decal",h) eh.Texture = "http://www.roblox.com/asset/?id=1471407701"
  459. scm = Instance.new("Sound",workspace) scm.Volume = 1 scm.SoundId = "rbxassetid://1569907462" scm:Play()
  460. hewill = Instance.new("Sound",workspace) hewill.Pitch = .9 hewill.Volume = 10 hewill.SoundId = "rbxassetid://689176850" hewill:Play()
  461. for i = 1,70 do
  462. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(0,.0125,0)
  463. wait()
  464. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(0,-.00625,0)
  465. wait()
  466. end
  467. wait(4.4)
  468. lau = Instance.new("Sound",t) lau.SoundId = "rbxassetid://138085838" lau.Volume = 5 lau:Play()
  469. hum.WalkSpeed = 0 hum.JumpPower = 0
  470. blid = Instance.new("Part",workspace) blid.Anchored = true blid.CanCollide = false blid.BrickColor = BrickColor.new("Crimson") blid.Material = "Neon" blid.Size = Vector3.new(1,.05,1) blid.CFrame = t.CFrame * CFrame.new(0,-2.85,0) bm = Instance.new("SpecialMesh",blid) bm.MeshType = "Sphere"
  471. for i = 1,15 do
  472. blid.Size = blid.Size + Vector3.new(1,0,1)
  473. rut.Anchored = true
  474. wait()
  475. end
  476. hewill:Destroy()
  477. wot = Instance.new("Part",workspace) wot.CanCollide = false wot.Transparency = 1 wot.Size = Vector3.new(1000, 1000, 60) wot.Anchored = true wot.CFrame = t.CFrame * CFrame.new(0,100,0) wot.CFrame = wot.CFrame * CFrame.fromEulerAnglesXYZ(4.7,0,0) wot.BrickColor = BrickColor.new("Crimson") wot.Material = "Glass" wot.Transparency = 1 li = Instance.new("SurfaceLight",wot) li.Angle = 180 li.Brightness = 100 li.Color = Color3.fromRGB(255,0,0) li.Range = 100 li.Face = "Front" wot.Name = "onoweded" hum.WalkSpeed = 0 hum.JumpPower = 0
  478. dy3 = wot.Touched:connect(die1)
  479. for i = 1,5 do
  480. rutj.C0 = rutj.C0 * CFrame.new(0,0,-2.5)
  481. wot.Transparency = wot.Transparency -.14
  482. wait()
  483. end
  484. for i = 1,15 do
  485. blid.Size = blid.Size - Vector3.new(1,0,1)
  486. wait()
  487. end
  488. blid.Transparency = 1
  489. for i = 1,14 do
  490. wot.CFrame = wot.CFrame * CFrame.new(0,0,-2.5)
  491. wait(.1)
  492. end
  493. lau:Destroy()
  494. for i = 1,26 do
  495. wot.CFrame = wot.CFrame * CFrame.new(0,0,-2.5)
  496. wait(.1)
  497. end
  498. wait(1)
  499. blid.Transparency = 0
  500. for i = 1,15 do
  501. blid.Size = blid.Size + Vector3.new(1,0,1)
  502. wait()
  503. end
  504. scm:Destroy()
  505. h.face.Transparency = 0 eh:Destroy()
  506. for i = 1,6 do
  507. mus.Volume = mus.Volume +.5
  508. wait()
  509. end
  510. for i = 1,7 do
  511. wot.Transparency = wot.Transparency +.1
  512. wait()
  513. end
  514. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  515. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  516. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  517. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  518. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  519. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0) rutj.C0 = rutj.C0 * CFrame.new(0,0,-10)
  520. hum.DisplayDistanceType = "Viewer" hum.HealthDisplayType = "DisplayWhenDamaged"
  521. for i = 1,5 do
  522. rutj.C0 = rutj.C0 * CFrame.new(0,0,2)
  523. wait()
  524. end
  525. rut.Anchored = false wot:Destroy() hum.WalkSpeed = 16 hum.JumpPower = 50 game.Lighting.TimeOfDay = 14 game.Lighting.FogColor = Color3.fromRGB(191,191,191) game.Lighting.FogEnd = 100000
  526. for i = 1,10 do
  527. blid.Transparency = blid.Transparency +.1
  528. wait(.05)
  529. end
  530. blid:Destroy()
  531. wait(.1)
  532. using = false
  533. end
  534. end)
  535. ----------------Bit Toast-------------
  536. mouse.KeyDown:connect(function(key)
  537. if key == "r" and not using and not eating then
  538. using = true
  539. eating = true
  540. for i = 1,10 do
  541. brda.Transparency = brda.Transparency -.1
  542. wait()
  543. end
  544. hum.WalkSpeed = 0 hum.JumpPower = 0
  545. for i = 1,10 do
  546. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.1,.07,.15) brdaw.C0 = brdaw.C0 * CFrame.fromEulerAnglesXYZ(.2,.15,.2)
  547. wait()
  548. end
  549. wait(.5)
  550. crunch = Instance.new("Sound",brda) crunch.Volume = 5 crunch.SoundId = "rbxassetid://181027147" crunch:Play()
  551. piece = Instance.new("Part",workspace) piece.BrickColor = BrickColor.new("Wheat") piece.Size = Vector3.new(.1,.1,.1) piece.TopSurface = "Smooth" piece.BottomSurface = "Smooth" piece.CFrame = h.CFrame * CFrame.new(.1,0,-.4)
  552. piece1 = Instance.new("Part",workspace) piece1.BrickColor = BrickColor.new("Deep orange") piece1.Size = Vector3.new(.1,.1,.1) piece1.TopSurface = "Smooth" piece1.BottomSurface = "Smooth" piece1.CFrame = h.CFrame * CFrame.new(0,0,-.5)
  553. piece2 = Instance.new("Part",workspace) piece2.BrickColor = BrickColor.new("Wheat") piece2.Size = Vector3.new(.1,.1,.1) piece2.TopSurface = "Smooth" piece2.BottomSurface = "Smooth" piece2.CFrame = h.CFrame * CFrame.new(0,.05,-.5)
  554. piece3 = Instance.new("Part",workspace) piece3.BrickColor = BrickColor.new("Wheat") piece3.Size = Vector3.new(.1,.1,.1) piece3.TopSurface = "Smooth" piece3.BottomSurface = "Smooth" piece3.CFrame = h.CFrame * CFrame.new(-.1,.1,-.6)
  555. piece4 = Instance.new("Part",workspace) piece4.BrickColor = BrickColor.new("Wheat") piece4.Size = Vector3.new(.1,.1,.1) piece4.TopSurface = "Smooth" piece4.BottomSurface = "Smooth" piece4.CFrame = h.CFrame * CFrame.new(-.1,.1,-.6)
  556. for i = 1,2 do
  557. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
  558. wait()
  559. end
  560. happy = Instance.new("Decal",h) happy.Texture = "http://www.roblox.com/asset/?id=258591579" h.face.Transparency = 1
  561. wait(.07)
  562. for i = 1,10 do
  563. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,-.07,-.15) brdaw.C0 = brdaw.C0 * CFrame.fromEulerAnglesXYZ(-.2,-.15,-.2)
  564. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(-.02,0,0)
  565. wait()
  566. end
  567. for i = 1,10 do
  568. brda.Transparency = brda.Transparency +.1
  569. wait()
  570. end
  571. crunch:Destroy() hum.WalkSpeed = 40 hum.JumpPower = 80
  572. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) brdaw.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,3) brdaw.C0 = brdaw.C0 * CFrame.new(0,1.3,0)
  573. wait(.1)
  574. using = false
  575. for i = 1,10 do
  576. hum.WalkSpeed = 40 hum.JumpPower = 80
  577. wait(.5)
  578. end
  579. for i = 1,10 do
  580. piece.Transparency = piece.Transparency +.1
  581. piece1.Transparency = piece1.Transparency +.1
  582. piece2.Transparency = piece2.Transparency +.1
  583. piece3.Transparency = piece3.Transparency +.1
  584. piece4.Transparency = piece4.Transparency +.1
  585. wait()
  586. end
  587. piece:Destroy() piece1:Destroy() piece2:Destroy() piece3:Destroy() piece4:Destroy()
  588. for i = 1,30 do
  589. hum.WalkSpeed = 40 hum.JumpPower = 80
  590. wait(.5)
  591. end
  592. happy:Destroy() h.face.Transparency = 0
  593. hum.WalkSpeed = 16 hum.JumpPower = 50
  594. eating = false
  595. end
  596. end)
  597. -------------Sit--------------
  598. mouse.KeyDown:connect(function(key)
  599. if key == "z" and not using then
  600. hum.WalkSpeed = 0 hum.JumpPower = 0
  601. rutj.C0 = rutj.C0 * CFrame.new(0,0,-1.9)
  602. rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,-.2,.8) rh.C0 = rh.C0 * CFrame.new(1,.4,0)
  603. lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,.1,-1.5) lh.C0 = lh.C0 * CFrame.new(-.3,0,0)
  604. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,1,1)
  605. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,-.5,-.7)
  606. end
  607. end)
  608. mouse.KeyUp:connect(function(key)
  609. if key == "z" and not using then
  610. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  611. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  612. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  613. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  614. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  615. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  616. hum.WalkSpeed = 16 hum.JumpPower = 50
  617. end
  618. end)
  619. -------------Punch-------------
  620. mouse.KeyDown:connect(function(key)
  621. if key == "f" and not using then
  622. using = true
  623. function punch(hit)
  624. if hit.Parent ~= nil then
  625. local huma = hit.Parent:findFirstChildOfClass("Humanoid")
  626. if hum ~= nil then
  627. ow = Instance.new("Sound",hit.Parent.Head) ow.Volume = 3 ow.SoundId = "rbxassetid://743886825" ow:Play()
  628. huma.MaxHealth = 100 huma.PlatformStand = true
  629. huma:TakeDamage(math.random(1,5))
  630. huma.Health = huma.Health -0
  631. blud = Instance.new("Part",hit.Parent.Head) blud.Material = "Glass" blud.Shape = "Ball" blud.Size = Vector3.new(.25,.25,.25) blud.BrickColor = BrickColor.new("Crimson") blud.CFrame = hit.Parent.Head.CFrame bludm = Instance.new("SpecialMesh",blud) bludm.MeshType = "Brick"
  632. wait(3)
  633. for i,v in pairs(hit.Parent.Head:GetChildren()) do
  634. if v:IsA("Part") then
  635. v.Transparency = v.Transparency +.1
  636. wait(.1)
  637. end
  638. end
  639. for i,v in pairs(hit.Parent.Head:GetChildren()) do
  640. if v:IsA("Part") then
  641. v:Destroy()
  642. wait()
  643. end
  644. end
  645. ow:Destroy() huma.PlatformStand = false
  646. end
  647. end
  648. end
  649. hb = Instance.new("Part",ra) hb.Size = Vector3.new(1,1,1) hbw = Instance.new("Weld",hb) hb.Transparency = 1 hbw.Part0 = ra hbw.Part1 = hb hbw.C0 = hbw.C0 * CFrame.new(0,-.5,0)
  650. for i = 1,5 do
  651. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1)
  652. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
  653. wait()
  654. end
  655. hb.Touched:connect(punch)
  656. wait(.2)
  657. for i = 1,5 do
  658. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
  659. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.16,0,0)
  660. wait()
  661. end
  662. for i,v in pairs(ra:GetChildren()) do
  663. if v:IsA("Part") then
  664. v:Destroy()
  665. end
  666. end
  667. for i = 1,10 do
  668. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1)
  669. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.154)
  670. wait()
  671. end
  672. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,3.145,0)
  673. wait(.1)
  674. using = false
  675. end
  676. end)
  677. -------Teleport--------
  678. mouse.KeyDown:connect(function(key)
  679. if key == "x" then
  680. t.CFrame = mouse.Hit * CFrame.new(0,2.5,0)
  681. end
  682. end)
  683. ---------FINISH HIM---------
  684. mouse.KeyDown:connect(function(key)
  685. if key == "g" and not using then
  686. using = true
  687. function awa(hit)
  688. if hit.Parent ~= nil then
  689. local humn = hit.Parent:findFirstChildOfClass("Humanoid")
  690. if humn ~= nil then
  691. if humn.PlatformStand == true then
  692. ow1 = Instance.new("Sound",hit.Parent.Head) ow1.Volume = 3 ow1.SoundId = "rbxassetid://743886825" ow1:Play() humn.Health = 0
  693. for i = 1,10 do
  694. blud1 = Instance.new("Part",hit.Parent.Head) blud1.Material = "Glass" blud1.CFrame = hit.Parent.Head.CFrame blud1.Size = Vector3.new(.25,.25,.25) blud1.BrickColor = BrickColor.new("Crimson") blud1.Shape = "Ball" blud1m = Instance.new("SpecialMesh",blud1) blud1m.MeshType = "Brick"
  695. end
  696. for i,v in pairs(hit.Parent.Head:GetChildren()) do
  697. if v:IsA("Part") then
  698. v.Transparency = v.Transparency +.1
  699. wait(.1)
  700. end
  701. end
  702. for i,v in pairs(hit.Parent.Head:GetChildren()) do
  703. if v:IsA("Part") then
  704. v:Destroy()
  705. wait()
  706. end
  707. end
  708. for i = 1,50 do
  709. humn.Health = 0
  710. wait()
  711. end
  712. ow1:Destroy()
  713. end
  714. end
  715. end
  716. end
  717. for i = 1,5 do
  718. rh.C0 = rh.C0 * CFrame.new(.17,.25,0) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(-.03,0,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,0.04,.17) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-0.1,-.04,-.17) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.05)
  719. wait()
  720. end
  721. hitbox = Instance.new("Part",rl) hitbox.Size = Vector3.new(1,1,1) hitbox.Transparency = 1 hw = Instance.new("Weld",hitbox) hw.Part0 = rl hw.Part1 = hitbox hw.C0 = hw.C0 * CFrame.new(0,-.5,0)
  722. wait(.3)
  723. hc = hitbox.Touched:connect(awa)
  724. for i = 1,5 do
  725. rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.03)
  726. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
  727. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.1,0,0)
  728. rh.C0 = rh.C0 * CFrame.new(0,-.25,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.34) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,.34)
  729. wait()
  730. end
  731. for i,v in pairs(rl:GetChildren()) do
  732. if v:IsA("Part") then
  733. v:Destroy()
  734. end
  735. end
  736. for i = 1,5 do
  737. rh.C0 = rh.C0 * CFrame.new(-.17,0,0) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.1,0,.17) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.1,0,-.17) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(-.08,0,0) nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(-.1,0,0)
  738. wait()
  739. end
  740. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  741. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  742. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  743. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  744. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  745. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  746. wait(.1)
  747. using = false
  748. end
  749. end)
  750. ----------Crouch------------
  751. mouse.KeyDown:connect(function(key)
  752. if key == "c" and not using then
  753. hum.WalkSpeed = 7 hum.JumpPower = 20
  754. rutj.C0 = rutj.C0 * CFrame.new(0,0,-1) rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(.5,0,0)
  755. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(-.4,0,0)
  756. rh.C0 = rh.C0 * CFrame.new(.6,1,0) rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3)
  757. lh.C0 = lh.C0 * CFrame.new(-.6,1,0) lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.33)
  758. for i,v in pairs(char:GetChildren()) do
  759. if v:IsA("Accessory") then
  760. v.Handle.Transparency = .8
  761. end
  762. end
  763. ra.Transparency = .8 la.Transparency = .8 rl.Transparency = .8 ll.Transparency = .8 t.Transparency = .8 h.Transparency = .8 h.face.Transparency = .8
  764. end
  765. end)
  766. mouse.KeyUp:connect(function(key)
  767. if key == "c" and not using then
  768. for i,v in pairs(char:GetChildren()) do
  769. if v:IsA("Accessory") then
  770. v.Handle.Transparency = 0
  771. end
  772. end
  773. ra.Transparency = 0 la.Transparency = 0 rl.Transparency = 0 ll.Transparency = 0 t.Transparency = 0 h.Transparency = 0 h.face.Transparency = 0
  774. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  775. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  776. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  777. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  778. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  779. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  780. hum.WalkSpeed = 16 hum.JumpPower = 50
  781. end
  782. end)
  783. ------------CrUnCh------------
  784. mouse.KeyDown:connect(function(key)
  785. if key == "v" and not using then
  786. using = true
  787. local bric = Instance.new("Part",char) bric.Name = "g0 d13 n00b" bric.Size = Vector3.new(4,6,4) bric.CanCollide = false bric.Transparency = 1 local bricw = Instance.new("Weld",bric) bricw.Part0 = t bricw.Part1 = bric
  788. function smash(hit)
  789. if hit.Parent ~= nil then
  790. local bitc = hit.Parent:FindFirstChildOfClass("Humanoid")
  791. if bitc ~= nil then
  792. if hit.Parent == char then
  793.  
  794. else
  795. local n00b = hit.Parent
  796. bric:Destroy()
  797. for i = 1,5 do
  798. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1)
  799. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.1,-.25,.35)
  800. wait()
  801. end
  802. wait(.4)
  803. rut.Anchored = true
  804. local prt = Instance.new("Part",ra) prt.Size = Vector3.new(1,1,1) prt.Transparency = 1 local pw = Instance.new("Weld",prt) pw.Part0 = ra pw.Part1 = prt pw.C0 = pw.C0 * CFrame.new(0,.5,0)
  805. local hw = Instance.new("Weld",prt) hw.Part0 = prt hw.Part1 = n00b.Head hw.C0 = hw.C0 * CFrame.new(0,-1.5,-2) * CFrame.fromEulerAnglesXYZ(1.55,0,3.1)
  806. for i = 1,2 do
  807. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,1)
  808. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,.5,.2)
  809. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(0,.2,-.45)
  810. wait()
  811. end
  812. wait(1.5)
  813. for i = 1,10 do
  814. local bred = Instance.new("Part",n00b.Head) bred.Size = Vector3.new(0.624, 0.632, 0.08)
  815. local brd = Instance.new("SpecialMesh",bred) brd.MeshType = "FileMesh" brd.MeshId = "rbxassetid://1614924885" brd.TextureId = "rbxassetid://1614940093" brd.Scale = Vector3.new(0.002,0.002,0.002)
  816. bred.CFrame = n00b.Head.CFrame
  817. end
  818. local pe = Instance.new("ParticleEmitter",n00b.Head) pe.Color = ColorSequence.new(Color3.fromRGB(255,200,200)) pe.Acceleration = Vector3.new(0,-5,0) pe.Texture = "http://www.roblox.com/asset/?id=1450282643" pe.SpreadAngle = Vector2.new(180,180) pe.Rate = 100
  819. local pe1 = Instance.new("ParticleEmitter",n00b.Head) pe1.Color = ColorSequence.new(Color3.fromRGB(255,200,200)) pe1.Acceleration = Vector3.new(0,-5,0) pe1.Texture = "http://www.roblox.com/asset/?id=1450282643" pe1.SpreadAngle = Vector2.new(180,180) pe1.Rate = 100
  820. local cru = Instance.new("Sound",t) cru.SoundId = "rbxassetid://181027147" cru.Volume = 10 cru:Play()
  821. local chunch = Instance.new("Sound",t) chunch.SoundId = "rbxassetid://618667795" chunch.Volume = 2 chunch:Play()
  822. rut.Anchored = false
  823. prt:Destroy()
  824. n00b:BreakJoints()
  825. for i,v in pairs(n00b:GetChildren()) do
  826. if v:IsA("Part") then
  827. v.BrickColor = BrickColor.new("Wheat")
  828. v.Transparency = .2 v.Material = "Glass"
  829. v.Anchored = false
  830. local dec = v:FindFirstChildOfClass("Decal")
  831. if dec ~= nil then
  832. dec:Destroy()
  833. end
  834. local mec = v:FindFirstChildOfClass("SpecialMesh")
  835. if mec ~= nil then
  836. mec:Destroy()
  837. end
  838. end
  839. end
  840. for i,v in pairs(n00b:GetChildren()) do
  841. if v:IsA("Accessory") or ("Hat") then
  842. local pt = v:FindFirstChildOfClass("Part")
  843. if pt ~= nil then
  844. pt.Anchored = false
  845. pt.Transparency = .3 pt.BrickColor = BrickColor.new("Wheat")
  846. pt.Material = "Glass" pt.CanCollide = true
  847. local smh = pt:FindFirstChildOfClass("SpecialMesh")
  848. if smh ~= nil then
  849. smh.TextureId = ""
  850. end
  851. end
  852. end
  853. end
  854. for i,v in pairs(n00b:GetChildren()) do
  855. if v:IsA("MeshPart") then
  856. v.Anchored = false
  857. v.BrickColor = BrickColor.new("Wheat")
  858. v.Transparency = .2 v.Material = "Glass"
  859. local dec = v:FindFirstChildOfClass("Decal")
  860. if dec ~= nil then
  861. dec:Destroy()
  862. end
  863. end
  864. end
  865. for i,v in pairs(n00b:GetChildren()) do
  866. if v:IsA("Script") then
  867. v:Destroy()
  868. end
  869. end
  870. for i,v in pairs(n00b:GetChildren()) do
  871. if v:IsA("Humanoid") then
  872. v:Destroy()
  873. end
  874. end
  875. for i,v in pairs(n00b:GetChildren()) do
  876. if v:IsA("CharacterMesh") then
  877. v:Destroy()
  878. end
  879. end
  880. for i,v in pairs(n00b:GetChildren()) do
  881. if v:IsA("Shirt") then
  882. v:Destroy()
  883. end
  884. end
  885. for i,v in pairs(n00b:GetChildren()) do
  886. if v:IsA("Pants") then
  887. v:Destroy()
  888. end
  889. end
  890. for i,v in pairs(n00b:GetChildren()) do
  891. if v:IsA("Part") and v:IsA("SpecialMesh") then
  892. v.Transparency = .5 v.CanCollide = true
  893. v.Name = "nub" v.BrickColor = BrickColor.new("Wheat")
  894. v.Mesh.TextureId = ""
  895. end
  896. end
  897. wait(.3)
  898. pe.Enabled = false
  899. pe1.Enabled = false
  900. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  901. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  902. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  903. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  904. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  905. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  906. wait(2)
  907. chunch:Destroy() cru:Destroy()
  908. n00b:Destroy()
  909. end
  910. end
  911. end
  912. end
  913. bric.Touched:connect(smash)
  914. wait(3)
  915. bric:Destroy()
  916. using = false
  917. end
  918. end)
  919. --------Cut the throat---------
  920. mouse.KeyDown:connect(function(key)
  921. if key == "h" and not using then
  922. local hum1 = mouse.Target.Parent:findFirstChildOfClass("Humanoid")
  923. if hum1 ~= nil then
  924. char.Animate.Disabled = true
  925. for i,v in pairs(hum1.Parent:GetChildren()) do
  926. if v:IsA("LocalScript") then
  927. v:Destroy()
  928. end
  929. end
  930. for i,v in pairs(hum1.Parent:GetChildren()) do
  931. if v:IsA("Script") then
  932. v:Destroy()
  933. end
  934. end
  935. disshit = hum1.Parent
  936. h1 = hum1.Parent.Head
  937. t1 = hum1.Parent.Torso
  938. ra1 = hum1.Parent["Right Arm"]
  939. la1 = hum1.Parent["Left Arm"]
  940. rl1 = hum1.Parent["Right Leg"]
  941. ll1 = hum1.Parent["Left Leg"]
  942. hum1.WalkSpeed = 0 hum1.JumpPower = 0 hum1.Parent.Head.Anchored = true hum.WalkSpeed = 0 hum.JumpPower = 0
  943. t.CFrame = hum1.Parent.Head.CFrame * CFrame.new(0,-1.5,-2.5) t.CFrame = t.CFrame * CFrame.fromEulerAnglesXYZ(0,3.1,0)
  944. knife = Instance.new("Part",ra) knife.Size = Vector3.new(0.2, 3, 0.7) km = Instance.new("SpecialMesh",knife) km.MeshType = "FileMesh" km.MeshId = "http://www.roblox.com/asset/?id=121944778" km.TextureId = "http://www.roblox.com/asset/?id=161971611" kw = Instance.new("Weld",knife) kw.Part0 = knife kw.Part1 = ra kw.C0 = kw.C0 * CFrame.new(0,-.6,1) kw.C0 = kw.C0 * CFrame.fromEulerAnglesXYZ(1.5,3,0)
  945. rut.Anchored = true
  946. for i = 1,5 do
  947. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.3,0,0)
  948. wait()
  949. end
  950. bb = Instance.new("BillboardGui",char)
  951. bb.AlwaysOnTop = false
  952. bb.Size = UDim2.new(5,35,2,15)
  953. bb.StudsOffset = Vector3.new(4,0,0)
  954. bb.MaxDistance = 75
  955. bb.Adornee = h
  956. bb.Name = "Name"
  957. label = Instance.new("TextLabel",bb)
  958. label.BackgroundTransparency = 1
  959. label.TextScaled = true
  960. label.BorderSizePixel = 0
  961. label.Text = "Be Gone... " ..disshit.Name
  962. label.Font = "Cartoon"
  963. label.TextSize = 20
  964. label.TextStrokeTransparency = 0
  965. label.TextColor3 = Color3.new(1,1,1)
  966. label.TextStrokeColor3 = Color3.fromRGB(255,150,0)
  967. label.Size = UDim2.new(1,0,0.5,0)
  968. label.Parent = bb
  969. for i = 1,10 do
  970. bb.StudsOffset = bb.StudsOffset +Vector3.new(0,.2,0)
  971. label.TextTransparency = label.TextTransparency +.1
  972. label.TextStrokeTransparency = label.TextStrokeTransparency +.1
  973. wait(.07)
  974. end
  975. for i,v in pairs(char:GetChildren()) do
  976. if v:IsA("BillboardGui") then
  977. v:Destroy()
  978. end
  979. end
  980. for i = 1,3 do
  981. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.6)
  982. wait()
  983. end
  984. hum1.Health = 0.1 hum1.MaxHealth = 100
  985. stab = Instance.new("Sound",h1) stab.TimePosition = .3 stab.SoundId = "rbxassetid://1386772138" stab.Volume = 3 stab:Play()
  986. hum1.PlatformStand = true
  987. hum1.Parent.Head.Anchored = false
  988. for i,v in pairs(t1:GetChildren()) do
  989. if v:IsA("Motor6D") then
  990. v:Destroy()
  991. end
  992. end
  993. for i,v in pairs(h1:GetChildren()) do
  994. if v:IsA("Decal") then
  995. v:Destroy()
  996. end
  997. end
  998. aaaaa = Instance.new("Sound",h1) aaaaa.SoundId = "rbxassetid://393884633" aaaaa.Volume = 3 aaaaa:Play()
  999. disshit:BreakJoints()
  1000. ooww = Instance.new("Decal",h1) ooww.Texture = "http://www.roblox.com/asset/?id=1253783230"
  1001. at2 = Instance.new("Attachment",t1) at2.Position = Vector3.new(1,.8,0) at2.Position = Vector3.new(1,.8,0)
  1002. at = Instance.new("Attachment",ra1) at.Name = "oof" at.Position = Vector3.new(-.5,.8,0)
  1003. balls = Instance.new("BallSocketConstraint",ra1) balls.Attachment0 = at2 balls.Attachment1 = at
  1004. at21 = Instance.new("Attachment",t1) at21.Position = Vector3.new(-1,.8,0) at21.Position = Vector3.new(-1,.8,0) at21.Orientation = Vector3.new(0,180,0)
  1005. at1 = Instance.new("Attachment",la1) at.Name = "oof" at1.Position = Vector3.new(.5,.8,0)
  1006. balls1 = Instance.new("BallSocketConstraint",la1) balls1.Attachment0 = at21 balls1.Attachment1 = at1
  1007. nek = Instance.new("Attachment",h1) nek2 = Instance.new("Attachment",t1) nek2.Position = Vector3.new(0,1,0) nek.Position = Vector3.new(0,-.5,0) nball = Instance.new("BallSocketConstraint",h1) nball.Attachment0 = nek nball.Attachment1 = nek2
  1008. owihatedis = Instance.new("Attachment",t1) owihatedis.Position = Vector3.new(.6,-1,0) oihd = Instance.new("Attachment",rl1) oihd.Position = Vector3.new(.1,1,0) oww = Instance.new("BallSocketConstraint",rl1) oww.Attachment0 = owihatedis oww.Attachment1 = oihd
  1009. owihatedis2 = Instance.new("Attachment",t1) owihatedis2.Position = Vector3.new(-.6,-1,0) oihd2 = Instance.new("Attachment",ll1) oihd2.Position = Vector3.new(-.1,1,0) oww2 = Instance.new("BallSocketConstraint",ll1) oww2.Attachment0 = owihatedis2 oww2.Attachment1 = oihd2
  1010. box = Instance.new("Part",ra1) box.Size = Vector3.new(1,1,1) box.Transparency = 1
  1011. box1 = Instance.new("Part",la1) box1.Size = Vector3.new(1,1,1) box1.Transparency = 1
  1012. box2 = Instance.new("Part",rl1) box2.Size = Vector3.new(1,1,1) box2.Transparency = 1
  1013. box3 = Instance.new("Part",ll1) box3.Size = Vector3.new(1,1,1) box3.Transparency = 1
  1014. box4 = Instance.new("Part",t1) box4.Size = t.Size - Vector3.new(0,.2,0) box4.Transparency = 1
  1015. bw = Instance.new("Weld",box) bw.Part0 = box bw.Part1 = ra1 bw.C0 = bw.C0 * CFrame.new(0,.5,0)
  1016. bw1 = Instance.new("Weld",box1) bw1.Part0 = box1 bw1.Part1 = la1 bw1.C0 = bw1.C0 * CFrame.new(0,.5,0)
  1017. bw2 = Instance.new("Weld",box2) bw2.Part0 = box2 bw2.Part1 = rl1 bw2.C0 = bw2.C0 * CFrame.new(0,.5,0)
  1018. bw3 = Instance.new("Weld",box3) bw3.Part0 = box3 bw3.Part1 = ll1 bw3.C0 = bw3.C0 * CFrame.new(0,.5,0)
  1019. bw4 = Instance.new("Weld",box4) bw4.Part0 = box4 bw4.Part1 = t1 bw4.C0 = bw4.C0 * CFrame.new(0,.2,0)
  1020. for i = 1,2 do
  1021. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.3) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.4)
  1022. wait()
  1023. end
  1024. end
  1025. char.Animate.Disabled = false
  1026. rut.Anchored = false
  1027. hum.WalkSpeed = 16 hum.JumpPower = 50
  1028. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,3.145,0) knife:Destroy()
  1029. for i = 1,10 do
  1030. blood = Instance.new("Part",h1) blood.Size = Vector3.new(3,3,.01) blood.BrickColor = BrickColor.new("Crimson") blood.TopSurface = "Smooth" blood.BottomSurface = "Smooth" blood.Material = "Glass" blood.CFrame = h1.CFrame * CFrame.new(0,-.5,-.6) bloodm = Instance.new("SpecialMesh",blood) bloodm.MeshType = "Sphere"
  1031. wait(.2)
  1032. end
  1033. wait(1)
  1034. for i = 1,10 do
  1035. h1.Transparency = h1.Transparency +.1
  1036. t1.Transparency =t1.Transparency +.1
  1037. ra1.Transparency = ra1.Transparency +.1
  1038. la1.Transparency =la1.Transparency +.1
  1039. rl1.Transparency = rl1.Transparency +.1
  1040. ll1.Transparency = ll1.Transparency +.1
  1041. wait(.05)
  1042. end
  1043. disshit:Destroy()
  1044. bb = Instance.new("BillboardGui",char)
  1045. bb.AlwaysOnTop = false
  1046. bb.Size = UDim2.new(5,35,2,15)
  1047. bb.StudsOffset = Vector3.new(4,0,0)
  1048. bb.MaxDistance = 75
  1049. bb.Adornee = h
  1050. bb.Name = "Name"
  1051. label = Instance.new("TextLabel",bb)
  1052. label.BackgroundTransparency = 1
  1053. label.TextScaled = true
  1054. label.BorderSizePixel = 0
  1055. label.Text = disshit.Name.. " Is Gone..."
  1056. label.Font = "Cartoon"
  1057. label.TextSize = 20
  1058. label.TextStrokeTransparency = 0
  1059. label.TextColor3 = Color3.new(1,1,1)
  1060. label.TextStrokeColor3 = Color3.fromRGB(255,150,0)
  1061. label.Size = UDim2.new(1,0,0.5,0)
  1062. label.Parent = bb
  1063. for i = 1,10 do
  1064. bb.StudsOffset = bb.StudsOffset +Vector3.new(0,.2,0)
  1065. label.TextTransparency = label.TextTransparency +.1
  1066. label.TextStrokeTransparency = label.TextStrokeTransparency +.1
  1067. wait(.07)
  1068. end
  1069. for i,v in pairs(char:GetChildren()) do
  1070. if v:IsA("BillboardGui") then
  1071. v:Destroy()
  1072. end
  1073. end
  1074. end
  1075. end)
  1076. -------Throw Toast(Can eat)--------
  1077. mouse.KeyDown:connect(function(key)
  1078. if key == "y" and not using then
  1079. function eat(toch)
  1080. if toch.Parent ~= nil then
  1081. local humt = toch.Parent:findFirstChildOfClass("Humanoid")
  1082. if humt ~= nil then
  1083. local hed = humt.Parent.Head
  1084. toast:Destroy()
  1085. humt.Health = humt.Health +20 humt.WalkSpeed = humt.WalkSpeed +5 humt.JumpPower = humt.JumpPower +5
  1086. yum = Instance.new("Sound",hed) yum.Volume = 8 yum.SoundId = "rbxassetid://181027147" yum:Play()
  1087. wait(1)
  1088. yum:Destroy()
  1089. wait(10)
  1090. humt.WalkSpeed = humt.WalkSpeed -5 humt.JumpPower = humt.JumpPower -5
  1091. end
  1092. end
  1093. end
  1094. toast = Instance.new("Part",workspace) toast.Name = "EATMEBITC" toast.Size = Vector3.new(1.248, 1.264, 0.16) tm = Instance.new("SpecialMesh",toast) tm.Scale = Vector3.new(0.003, 0.003, 0.003) tm.MeshType = "FileMesh" tm.MeshId = "rbxassetid://1614924885" tm.TextureId = "rbxassetid://1614940093" tw = Instance.new("Weld",brda) tw.Name = "wuild" tw.Part0 = toast tw.Part1 = brda
  1095. for i = 1,5 do
  1096. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.2,-.2,.2)
  1097. wait()
  1098. end
  1099. wait(.3)
  1100. for i = 1,2 do
  1101. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.2,0,.1)
  1102. wait()
  1103. end
  1104. for i,v in pairs(brda:GetChildren()) do
  1105. if v:IsA("Weld") then
  1106. v:Destroy()
  1107. end
  1108. end
  1109. toast.Touched:connect(eat)
  1110. for i = 1,5 do
  1111. toast.CFrame = toast.CFrame * CFrame.new(0,1,1)
  1112. wait()
  1113. end
  1114. for i = 1,3 do
  1115. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.2,0,.1)
  1116. wait()
  1117. end
  1118. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  1119. end
  1120. end)
  1121. ------Summon Explosion------
  1122. ALLAHU_AKBAR = false
  1123. mouse.KeyDown:connect(function(key)
  1124. if key == "b" and not using and not ALLAHU_AKBAR then
  1125. using = true
  1126. ALLAHU_AKBAR = true
  1127. local bum = Instance.new("Part",workspace) bum.CFrame = mouse.Hit bum.TopSurface = "Smooth" bum.BottomSurface = "Smooth" bum.Material = "Neon" bum.BrickColor = BrickColor.new("Deep orange") bum.Transparency = 1 bum.Shape = "Ball" bum.Size = Vector3.new(50,50,50) bum.CanCollide = false bum.Anchored = true
  1128. function aa(hit)
  1129. if hit.Parent ~= nil then
  1130. local humta = hit.Parent:findFirstChildOfClass("Humanoid")
  1131. if humta ~= nil then
  1132. if hit.Parent == char then
  1133.  
  1134. else
  1135. local datbitc = hit.Parent humta.DisplayDistanceType = "None"
  1136. hit.Transparency = 1 hit.Anchored = true
  1137. for i,v in pairs(datbitc:GetChildren()) do
  1138. if v:IsA("Accessory") then
  1139. v:Destroy()
  1140. end
  1141. end
  1142. datbitc.Head.CFrame = bum.CFrame
  1143. humta.Parent.Head.Anchored = true
  1144. wait(1.4)
  1145. datbitc:Destroy()
  1146. end
  1147. end
  1148. end
  1149. end
  1150. bum.Touched:connect(aa)
  1151. local tweens = game:GetService("TweenService")
  1152. local tweeni = TweenInfo.new(
  1153. 1,
  1154. Enum.EasingStyle.Bounce,
  1155. Enum.EasingDirection.Out,
  1156. 0,
  1157. true,
  1158. 0
  1159. )
  1160. local size = {Size = Vector3.new(5,5,5), Transparency = 0,Color = Color3.fromRGB(255,0,0)}
  1161. local tsize = tweens:Create(bum,tweeni,size)
  1162. tsize:Play()
  1163. wait(1.4)
  1164. local bs = Instance.new("Sound",bum) bs.SoundId = "rbxassetid://144699494" bs.Volume = 10 bs:Play()
  1165. wait(1.7)
  1166. bum:Destroy()
  1167. using = false
  1168. wait(5)
  1169. local uf = Instance.new("Sound",t) uf.SoundId = "rbxassetid://1474367957" uf.Volume = 2 uf:Play()
  1170. ALLAHU_AKBAR = false
  1171. wait(1)
  1172. uf:Destroy()
  1173. end
  1174. end)
  1175. ------Kaboom------
  1176. kaboom1 = false
  1177. mouse.KeyDown:connect(function(key)
  1178. if key == "j" and not using and not kaboom1 then
  1179. function ah(hit)
  1180. if hit.Parent ~= nil then
  1181. local humana = hit.Parent:findFirstChildOfClass("Humanoid")
  1182. if humana ~= nil then
  1183. if hit.Parent == char then
  1184.  
  1185. else
  1186. local bitc = hit.Parent
  1187. bitc:Destroy()
  1188. end
  1189. end
  1190. end
  1191. end
  1192. using = true
  1193. rut.Anchored = true kaboom1 = true
  1194. for i = 1,10 do
  1195. rut.CFrame = rut.CFrame * CFrame.new(0,3,0)
  1196. mus.Volume = mus.Volume -.3
  1197. cm.Volume = cm.Volume +.1
  1198. wait()
  1199. end
  1200. local poom = Instance.new("Sound",t) poom.EmitterSize = 1000 poom.Volume = 10 poom.Pitch = .6 poom.SoundId = "rbxassetid://704085554"
  1201. local bum = Instance.new("Part",t) bum.Transparency = 1 bum.CanCollide = false bum.Anchored = true bum.CFrame = t.CFrame bum.Size = Vector3.new(200,200,200) bum.BrickColor = BrickColor.new("Toothpaste") bum.Shape = "Ball" bum.Material = "Neon"
  1202. local bum1 = Instance.new("Part",t) bum1.Transparency = 1 bum1.CanCollide = false bum1.Anchored = true bum1.CFrame = t.CFrame bum1.Size = Vector3.new(200,200,200) bum1.BrickColor = BrickColor.new("Toothpaste") bum1.Shape = "Ball" bum1.Material = "Neon"
  1203. local bum2 = Instance.new("Part",t) bum2.Transparency = 1 bum2.CanCollide = false bum2.Anchored = true bum2.CFrame = t.CFrame bum2.Size = Vector3.new(200,200,200) bum2.BrickColor = BrickColor.new("Toothpaste") bum2.Shape = "Ball" bum2.Material = "Neon"
  1204. local bum3= Instance.new("Part",t) bum3.Transparency = 1 bum3.CanCollide = false bum3.Anchored = true bum3.CFrame = t.CFrame bum3.Size = Vector3.new(200,200,200) bum3.BrickColor = BrickColor.new("Toothpaste") bum3.Shape = "Ball" bum3.Material = "Neon"
  1205. local tweeni = TweenInfo.new(
  1206. .6,
  1207. Enum.EasingStyle.Quint,
  1208. Enum.EasingDirection.In,
  1209. 0,
  1210. false,
  1211. 0
  1212. )
  1213. local size = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = .75}
  1214. local tsize = tweens:Create(bum,tweeni,size)
  1215. local size1 = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = .5}
  1216. local tsize1 = tweens:Create(bum1,tweeni,size1)
  1217. local size2 = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = .25}
  1218. local tsize2 = tweens:Create(bum2,tweeni,size2)
  1219. local size3 = {Size = Vector3.new(7,7,7), Color = Color3.fromRGB(255,100,0), Transparency = 0}
  1220. local tsize3 = tweens:Create(bum3,tweeni,size2)
  1221. tsize:Play()
  1222. poom:Play()
  1223. wait(.6)
  1224. tsize1:Play()
  1225. poom:Play()
  1226. wait(.6)
  1227. tsize2:Play()
  1228. poom:Play()
  1229. wait(.6)
  1230. tsize3:Play()
  1231. poom:Play()
  1232. local kaboom = Instance.new("Sound",t) kaboom.Volume = 3 kaboom.SoundId = "rbxassetid://138084923" kaboom:Play()
  1233. wait(1)
  1234. bum.Transparency = 1 bum1.Transparency = 1 bum2.Transparency = 1
  1235. local alahuakbar = {Size = Vector3.new(500,500,500), Transparency = 1, Color = Color3.fromRGB(255,50,0)}
  1236. local tak = tweens:Create(bum3,tweeni,alahuakbar)
  1237. tak:Play()
  1238. bum3.Touched:connect(ah)
  1239. local exp = Instance.new("Sound",t) exp.EmitterSize = 100 exp.Volume = 10 exp.SoundId = "rbxassetid://1577567682" exp:Play()
  1240. wait(1)
  1241. using = false rut.Anchored = false poom:Destroy()
  1242. bum:Destroy() bum1:Destroy() bum2:Destroy() bum3:Destroy()
  1243. wait(1)
  1244. kaboom:Destroy()
  1245. wait(.4)
  1246. exp:Destroy()
  1247. wait(10)
  1248. for i = 1,10 do
  1249. mus.Volume = mus.Volume +.3
  1250. cm.Volume = cm.Volume -.1
  1251. wait(.1)
  1252. end
  1253. kaboom1 = false
  1254. end
  1255. end)
  1256. ------Bread Grenade------
  1257. brid = false
  1258. mouse.KeyDown:connect(function(key)
  1259. if key == "u" and not using and not brid then
  1260. using = true
  1261. brid = true
  1262. function gren_exp(hit)
  1263. if hit.Parent ~= nil then
  1264. local humt = hit.Parent:FindFirstChild("Humanoid")
  1265. if humt ~= nil then
  1266. if hit.Parent == char then
  1267.  
  1268. else
  1269. hit.Transparency = .4 hit.Color = Color3.fromRGB(255,150,0) hit.Material = "Neon"
  1270. local meaaa = Instance.new("SpecialMesh",hit) meaaa.MeshType = "Brick"
  1271. wait(.7)
  1272. hit.Anchored = true
  1273. for i = 1,30 do
  1274. hit.CFrame = hit.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1275. wait()
  1276. end
  1277. for i = 1,6 do
  1278. hit.Transparency = hit.Transparency +.1
  1279. hit.CFrame = hit.CFrame * CFrame.new(math.random(-1,1),math.random(-1,1),math.random(-1,1))
  1280. wait()
  1281. end
  1282. humt.Parent:Destroy()
  1283. end
  1284. end
  1285. end
  1286. end
  1287. local tmod = Instance.new("Model",workspace) tmod.Name = "tust"
  1288. local tost = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1289. local tmesh createMesh("SpecialMesh",tost,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1290. local tweld = CreateWeld("Weld",tost,ra,tost,CFrame.new(0,-1.5,0),CFrame.fromEulerAnglesXYZ(0,0,3.1))
  1291. local tost1 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1292. local tmesh1 createMesh("SpecialMesh",tost1,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1293. local tweld1 = CreateWeld("Weld",tost1,tost1,tost,CFrame.new(0,0,.16),CFrame.new(0,0,0))
  1294. local tost2 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1295. local tmesh2 createMesh("SpecialMesh",tost2,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1296. local tweld2 = CreateWeld("Weld",tost2,tost2,tost,CFrame.new(0,0,.32),CFrame.new(0,0,0))
  1297. local tost3 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1298. local tmesh3 createMesh("SpecialMesh",tost3,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1299. local tweld3 = CreateWeld("Weld",tost3,tost3,tost,CFrame.new(0,0,.48),CFrame.new(0,0,0))
  1300. local tost4 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1301. local tmesh4 createMesh("SpecialMesh",tost4,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1302. local tweld4 = CreateWeld("Weld",tost4,tost4,tost,CFrame.new(0,0,-.16),CFrame.new(0,0,0))
  1303. local tost5 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1304. local tmesh5 createMesh("SpecialMesh",tost5,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1305. local tweld5 = CreateWeld("Weld",tost5,tost5,tost,CFrame.new(0,0,-.32),CFrame.new(0,0,0))
  1306. local tost6 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1307. local tmesh6 createMesh("SpecialMesh",tost6,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1308. local tweld6 = CreateWeld("Weld",tost6,tost6,tost,CFrame.new(0,0,-.48),CFrame.new(0,0,0))
  1309. local tost7 = CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1310. local tmesh7 createMesh("SpecialMesh",tost7,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1311. local tweld7 = CreateWeld("Weld",tost7,tost7,tost,CFrame.new(0,0,-.64),CFrame.new(0,0,0))
  1312. local tost8= CreatePart(tmod,"Plastic",0,0,"White","tast",Vector3.new(1.248, 1.264, 0.16),false,false)
  1313. local tmesh8 createMesh("SpecialMesh",tost8,"FileMesh","1614924885","1614940093",Vector3.new(0.003, 0.003, 0.003))
  1314. local tweld8 = CreateWeld("Weld",tost8,tost8,tost,CFrame.new(0,0,.64),CFrame.new(0,0,0))
  1315. function oobread(hit)
  1316. if hit.Parent ~= nil then
  1317. local huma = hit.Parent:FindFirstChildOfClass("Humanoid")
  1318. if huma ~= nil then
  1319. if hit.Parent == char then
  1320.  
  1321. else
  1322. for i = 1,100 do
  1323. huma.WalkToPoint = tost.Position
  1324. wait(.05)
  1325. end
  1326. end
  1327. end
  1328. end
  1329. end
  1330. for i = 1,5 do
  1331. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.1) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.15,0,.66)
  1332. wait()
  1333. end
  1334. wait(.6)
  1335. local vel = Instance.new("BodyVelocity",tost) vel.MaxForce = Vector3.new(99999,99999,99999)
  1336. vel.Velocity = ra.CFrame.lookVector * -30
  1337. tweld:Destroy()
  1338. for i = 1,5 do
  1339. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(0,0,.1) rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.15,0,-.66)
  1340. wait()
  1341. end
  1342. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1) rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,3.145,0)
  1343. vel:Destroy()
  1344. wait(.2)
  1345. tost.CanCollide = true tost1.CanCollide = true tost2.CanCollide = true tost3.CanCollide = true tost4.CanCollide = true tost5.CanCollide = true tost6.CanCollide = true tost7.CanCollide = true tost8.CanCollide = true
  1346. local obread = CreatePart(tmod,"Ice",0,1,"White","obread",Vector3.new(40,40,40),true,false) obread.CFrame = tost.CFrame obread.Touched:connect(oobread)
  1347. wait(3)
  1348. obread:Destroy()
  1349. wait(1)
  1350. using = false
  1351. tost.Touched:connect(oobread) tost1.Touched:connect(oobread) tost2.Touched:connect(oobread) tost3.Touched:connect(oobread) tost4.Touched:connect(oobread) tost5.Touched:connect(oobread) tost6.Touched:connect(oobread) tost7.Touched:connect(oobread) tost8.Touched:connect(oobread)
  1352. local boom = Instance.new("Explosion",tost) boom.Visible = false boom.Position = tost.Position boom.BlastPressure = 100000 boom.BlastRadius = 10
  1353. local bah = CreatePart(tmod,"Neon",0,0,"Deep Orange","bah",Vector3.new(2,2,2),true,false) bah.Position = tost.Position bah.Shape = "Ball"
  1354. bah.Color = Color3.fromRGB(255,160,0) bah.Touched:connect(gren_exp)
  1355. local tweeni = TweenInfo.new(
  1356. .3,
  1357. Enum.EasingStyle.Quint,
  1358. Enum.EasingDirection.In,
  1359. 0,
  1360. false,
  1361. 0)
  1362. local size = {Size = Vector3.new(20,20,20), Color = Color3.fromRGB(255,0,0), Transparency = 1}
  1363. local tsize = tweens:Create(bah,tweeni,size)
  1364. tsize:Play()
  1365. brid = false
  1366. wait(.3)
  1367. bah:Destroy()
  1368. wait(5)
  1369. tmod:Destroy()
  1370. end
  1371. end)
  1372. ------Chat Func.------
  1373. bbg = Instance.new("BillboardGui",h)
  1374. bbg.Size = UDim2.new(0,200,0,50)
  1375. bbg.StudsOffset = Vector3.new(0,2,0)
  1376. bbgTl = Instance.new("TextLabel",bbg)
  1377. bbgTl.BackgroundTransparency = 1
  1378. bbgTl.Size = UDim2.new(10,0,1,0)
  1379. bbgTl.Position = UDim2.new(-4.5,0,0,0)
  1380. bbgTl.Font = "Cartoon"
  1381. bbgTl.Text = " "
  1382. bbgTl.TextSize = 30
  1383. bbgTl.TextStrokeColor3 = Color3.fromRGB(255,160)
  1384. bbgTl.TextColor3 = Color3.fromRGB(255,255,255)
  1385. bbgTl.TextStrokeTransparency = 0
  1386. bbgTl.TextWrapped = true
  1387. plr.Chatted:connect(function(msg)
  1388. bbgTl.Text = msg
  1389. wait(5)
  1390. if bbgTl.Text == msg then
  1391. bbgTl.Text = " "
  1392. end
  1393. end)
  1394. ------...------
  1395. mouse.KeyDown:connect(function(key)
  1396. if key == "=" and not using then
  1397. using = true
  1398. for i = 1,5 do
  1399. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.15,0,.3)
  1400. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.15,0,-.3)
  1401. wait()
  1402. end
  1403. local hugbox = CreatePart(char,"Plastic",0,1,"White","Hugs",Vector3.new(3,5,3),false,false)
  1404. local huw = CreateWeld("Weld",hugbox,t,hugbox,CFrame.new(0,0,-2),CFrame.new(0,0,0))
  1405. function hugs(hug)
  1406. if hug.Parent ~= nil then
  1407. local wanthugs = hug.Parent:FindFirstChild("Humanoid")
  1408. if wanthugs ~= nil then
  1409. if hug.Parent == char then
  1410.  
  1411. else
  1412. hugbox:Destroy() wanthugs.Health = wanthugs.Health +35 wanthugs.PlatformStand = false wanthugs.Sit = false
  1413. for _,q in pairs(wanthugs.Parent.Head:GetChildren()) do
  1414. if q:IsA("Decal") then
  1415. q.Transparency = 1
  1416. end
  1417. end
  1418. local o = Instance.new("Decal",wanthugs.Parent.Head) o.Texture = "http://www.roblox.com/asset/?id=388881187"
  1419. h.face.Transparency = 1
  1420. local cface = Instance.new("Decal",h) cface.Texture = "http://www.roblox.com/asset/?id=158131972"
  1421. local hugw = CreateWeld("Weld",char,wanthugs.Parent.Head,t,CFrame.new(0,-1.5,-1.2),CFrame.fromEulerAnglesXYZ(0,3.1,0))
  1422. wait(.2)
  1423. for i = 1,10 do
  1424. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.1,0,.03) rs.C0 = rs.C0 * CFrame.new(0,-.06,0)
  1425. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.1,0,-.03) ls.C0 = ls.C0 * CFrame.new(0,-.06,0)
  1426. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(.05,.04,.04)
  1427. wait()
  1428. end
  1429. wait(2.2)
  1430. o:Destroy()
  1431. for _,q in pairs(wanthugs.Parent.Head:GetChildren()) do
  1432. if q:IsA("Decal") then
  1433. q.Transparency = 0
  1434. end
  1435. end
  1436. cface:Destroy()
  1437. h.face.Transparency = 0
  1438. hugw:Destroy()
  1439. char.Animate.Disabled = false
  1440. end
  1441. end
  1442. end
  1443. end
  1444. hugbox.Touched:connect(hugs)
  1445. wait(3)
  1446. for i = 1,5 do
  1447. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(.15,0,-.3)
  1448. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(.15,0,.3)
  1449. wait()
  1450. end
  1451. hugbox:Destroy()
  1452. using = false
  1453. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  1454. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  1455. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  1456. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  1457. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  1458. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  1459. end
  1460. end)
  1461. ------Decapitate------
  1462. dec = false
  1463. mouse.KeyDown:connect(function(key)
  1464. if key == "n" and not using and not dec then
  1465. local hum1 = mouse.Target.Parent:FindFirstChildOfClass("Humanoid")
  1466. if hum1 ~= nil then
  1467. local tp = Instance.new("Part",t) tp.Anchored = true tp.Size = t.Size tp.Transparency = 1 tp.CFrame = t.CFrame tp.CanCollide = false
  1468. using = true dec = true char.Animate.Disabled = true
  1469. t.Anchored = true hum.WalkSpeed = 0 hum.JumpPower = 0
  1470. disshit = hum1.Parent
  1471. h1 = hum1.Parent.Head
  1472. t1 = hum1.Parent.Torso
  1473. ra1 = hum1.Parent["Right Arm"]
  1474. la1 = hum1.Parent["Left Arm"]
  1475. rl1 = hum1.Parent["Right Leg"]
  1476. ll1 = hum1.Parent["Left Leg"]
  1477. hum1.WalkSpeed = 0 hum1.JumpPower = 0 t1.Anchored = true
  1478. t.CFrame = t1.CFrame * CFrame.new(0,0,-2) * CFrame.fromEulerAnglesXYZ(0,3.1,0)
  1479. for i = 1,5 do
  1480. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,.1,.4) * CFrame.new(0,-.15,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,-.1,-.4) * CFrame.new(0,-.15,0)
  1481. wait()
  1482. end
  1483. wait(.1)
  1484. local chunc = Instance.new("Sound",h1) chunc.SoundId = "rbxassetid://314390675" chunc.Volume = 2 chunc.Pitch = .7 chunc:Play()
  1485. for i = 1,10 do
  1486. chunc:Play()
  1487. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.06) * CFrame.new(.05,-.03,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.06) * CFrame.new(-.05,-.03,0)
  1488. wait(.05)
  1489. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.06) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,.06)
  1490. wait(.1)
  1491. end
  1492. for i,v in pairs(disshit:GetChildren()) do
  1493. if v.Name == "HumanoidRootPart" then
  1494. v:Destroy()
  1495. end
  1496. end
  1497. t1.Anchored = false h1.Anchored = false ra1.Anchored = false la1.Anchored = false rl1.Anchored = false ll1.Anchored = false
  1498. hum1.PlatformStand = true
  1499. hum1.Parent.Head.Anchored = false
  1500. disshit:BreakJoints()
  1501. for i,v in pairs(h1:GetChildren()) do
  1502. if v:IsA("Decal") then
  1503. v:Destroy()
  1504. end
  1505. end
  1506. ooww = Instance.new("Decal",h1) ooww.Texture = "http://www.roblox.com/asset/?id=1253783230"
  1507. at2 = Instance.new("Attachment",t1) at2.Position = Vector3.new(1,.8,0) at2.Position = Vector3.new(1,.8,0)
  1508. at = Instance.new("Attachment",ra1) at.Name = "oof" at.Position = Vector3.new(-.5,.8,0)
  1509. balls = Instance.new("BallSocketConstraint",ra1) balls.Attachment0 = at2 balls.Attachment1 = at
  1510. at21 = Instance.new("Attachment",t1) at21.Position = Vector3.new(-1,.8,0) at21.Position = Vector3.new(-1,.8,0) at21.Orientation = Vector3.new(0,180,0)
  1511. at1 = Instance.new("Attachment",la1) at.Name = "oof" at1.Position = Vector3.new(.5,.8,0)
  1512. balls1 = Instance.new("BallSocketConstraint",la1) balls1.Attachment0 = at21 balls1.Attachment1 = at1
  1513. owihatedis = Instance.new("Attachment",t1) owihatedis.Position = Vector3.new(.6,-1,0) oihd = Instance.new("Attachment",rl1) oihd.Position = Vector3.new(.1,1,0) oww = Instance.new("BallSocketConstraint",rl1) oww.Attachment0 = owihatedis oww.Attachment1 = oihd
  1514. nek = Instance.new("Attachment",h1) nek2 = Instance.new("Attachment",t1) nek2.Position = Vector3.new(0,1,0) nek.Position = Vector3.new(0,-.5,0) nball = Instance.new("RopeConstraint",h1) nball.Length = 5000 nball.Visible = false nball.Attachment0 = nek nball.Attachment1 = nek2
  1515. owihatedis2 = Instance.new("Attachment",t1) owihatedis2.Position = Vector3.new(-.6,-1,0) oihd2 = Instance.new("Attachment",ll1) oihd2.Position = Vector3.new(-.1,1,0) oww2 = Instance.new("BallSocketConstraint",ll1) oww2.Attachment0 = owihatedis2 oww2.Attachment1 = oihd2
  1516. box = Instance.new("Part",ra1) box.Size = Vector3.new(1,1,1) box.Transparency = 1
  1517. box1 = Instance.new("Part",la1) box1.Size = Vector3.new(1,1,1) box1.Transparency = 1
  1518. box2 = Instance.new("Part",rl1) box2.Size = Vector3.new(1,1,1) box2.Transparency = 1
  1519. box3 = Instance.new("Part",ll1) box3.Size = Vector3.new(1,1,1) box3.Transparency = 1
  1520. box4 = Instance.new("Part",t1) box4.Size = t.Size - Vector3.new(0,.2,0) box4.Transparency = 1
  1521. bw = Instance.new("Weld",box) bw.Part0 = box bw.Part1 = ra1 bw.C0 = bw.C0 * CFrame.new(0,.5,0)
  1522. bw1 = Instance.new("Weld",box1) bw1.Part0 = box1 bw1.Part1 = la1 bw1.C0 = bw1.C0 * CFrame.new(0,.5,0)
  1523. bw2 = Instance.new("Weld",box2) bw2.Part0 = box2 bw2.Part1 = rl1 bw2.C0 = bw2.C0 * CFrame.new(0,.5,0)
  1524. bw3 = Instance.new("Weld",box3) bw3.Part0 = box3 bw3.Part1 = ll1 bw3.C0 = bw3.C0 * CFrame.new(0,.5,0)
  1525. bw4 = Instance.new("Weld",box4) bw4.Part0 = box4 bw4.Part1 = t1 bw4.C0 = bw4.C0 * CFrame.new(0,.2,0)
  1526. local blud = Instance.new("Part",h1) blud.Shape = "Cylinder" blud.Size = Vector3.new(0.05, 0.77, 0.83) blud.Material = "Glass" blud.BrickColor = BrickColor.new("Crimson") local bludw = Instance.new("Weld",blud) bludw.Part0 = h1 bludw.Part1 = blud bludw.C0 = bludw.C0 * CFrame.new(0,-.59,0) * CFrame.fromEulerAnglesXYZ(0,0,1.55)
  1527. local blud1 = Instance.new("Part",t1) blud1.Shape = "Cylinder" blud1.Size = Vector3.new(0.05, 0.77, 0.83) blud1.Material = "Glass" blud1.BrickColor = BrickColor.new("Crimson") local bludw1 = Instance.new("Weld",blud1) bludw1.Part0 = t1 bludw1.Part1 = blud1 bludw1.C0 = bludw1.C0 * CFrame.new(0,1,0) * CFrame.fromEulerAnglesXYZ(0,0,1.55)
  1528. local hweld = CreateWeld("Weld",t1,h1,ra,CFrame.new(-1,-1,0),CFrame.fromEulerAnglesXYZ(0,0,0)) hweld.C0 = hweld.C0 * CFrame.fromEulerAnglesXYZ(0,0,3.1)
  1529. for i = 1,2 do
  1530. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(0,0,.6) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,-.6)
  1531. wait()
  1532. end
  1533. wait(.4)
  1534. for i = 1,5 do
  1535. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.4,0,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(0,0,.6)
  1536. wait()
  1537. end
  1538. hweld:Destroy()
  1539. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  1540. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  1541. t.Anchored = false hum.WalkSpeed = 16 hum.JumpPower = 50 char.Animate.Disabled = false
  1542. t.CFrame = tp.CFrame
  1543. tp:Destroy()
  1544. using = false
  1545. wait(5)
  1546. for i = 1,10 do
  1547. ra1.Transparency = ra1.Transparency +.1
  1548. la1.Transparency = la1.Transparency +.1
  1549. rl1.Transparency = rl1.Transparency +.1
  1550. ll1.Transparency = ll1.Transparency +.1
  1551. h1.Transparency = h1.Transparency +.1
  1552. t1.Transparency = t1.Transparency +.1
  1553. blud.Transparency = blud.Transparency +.1
  1554. blud1.Transparency = blud1.Transparency +.1
  1555. wait(.1)
  1556. end
  1557. disshit:Destroy()
  1558. dec = false
  1559. end
  1560. end
  1561. end)
  1562. --------Anti-stun------
  1563. mouse.KeyDown:connect(function(key)
  1564. if key == "n" then
  1565. using = false
  1566. h.Anchored = false
  1567. t.Anchored = false
  1568. ra.Anchored = false
  1569. la.Anchored = false
  1570. rl.Anchored = false
  1571. ll.Anchored = false
  1572. for i,v in pairs(char:GetChildren()) do
  1573. if v:IsA("Accessory") then
  1574. v.Handle.Anchored = false
  1575. end
  1576. end
  1577. dec = false
  1578. char.Animate.Disabled = false hum.WalkSpeed = 16 hum.JumpPower = 50
  1579. hum.PlatformStand = false brda.Anchored = false rut.Anchored = false
  1580. end
  1581. end)
  1582. ------Dance------
  1583. mouse.KeyDown:connect(function(key)
  1584. if key == "m" and not using then
  1585. using = true
  1586. hum.WalkSpeed = 0 hum.JumpPower = 0 mus.Volume = 0 tripoloski.Volume = 5
  1587. for i = 1,5 do
  1588. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.31,0,0) * CFrame.new(0,-.15,-.03)
  1589. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.31,0,0) * CFrame.new(0,-.15,-.03)
  1590. rh.C0 = rh.C0 * CFrame.new(0,0,.2)
  1591. lh.C0 = lh.C0 * CFrame.new(0,0,.2)
  1592. wait()
  1593. end
  1594. wait(.5)
  1595. for i = 1,6 do
  1596. for i = 1,5 do
  1597. rh.C0 = rh.C0 * CFrame.new(0,.2,0)
  1598. lh.C0 = lh.C0 * CFrame.new(0,.2,0)
  1599. rutj.C0 = rutj.C0 * CFrame.new(0,0,-.2)
  1600. wait()
  1601. end
  1602. wait(.05)
  1603. for i = 1,5 do
  1604. rh.C0 = rh.C0 * CFrame.new(0,-.2,0)
  1605. lh.C0 = lh.C0 * CFrame.new(0,-.2,0)
  1606. rutj.C0 = rutj.C0 * CFrame.new(0,0,.2)
  1607. wait()
  1608. end
  1609. end
  1610. for i = 1,15 do
  1611. for i = 1,2 do
  1612. rh.C0 = rh.C0 * CFrame.new(0,.5,0)
  1613. lh.C0 = lh.C0 * CFrame.new(0,.5,0)
  1614. rutj.C0 = rutj.C0 * CFrame.new(0,0,-.5)
  1615. wait()
  1616. end
  1617. for i = 1,2 do
  1618. rh.C0 = rh.C0 * CFrame.new(0,-.5,0)
  1619. lh.C0 = lh.C0 * CFrame.new(0,-.5,0)
  1620. rutj.C0 = rutj.C0 * CFrame.new(0,0,.5)
  1621. wait()
  1622. end
  1623. end
  1624. for i = 1,25 do
  1625. rh.C0 = rh.C0 * CFrame.new(0,1,0)
  1626. lh.C0 = lh.C0 * CFrame.new(0,1,0)
  1627. rutj.C0 = rutj.C0 * CFrame.new(0,0,-1)
  1628. wait(.03)
  1629. rh.C0 = rh.C0 * CFrame.new(0,-1,0)
  1630. lh.C0 = lh.C0 * CFrame.new(0,-1,0)
  1631. rutj.C0 = rutj.C0 * CFrame.new(0,0,1)
  1632. wait()
  1633. end
  1634. local ow = Instance.new("Decal",h) ow.Texture = "http://www.roblox.com/asset/?id=271100777"
  1635. local chunc = Instance.new("Sound",t) chunc.SoundId = "rbxassetid://314390675" chunc.Volume = 5 chunc:Play()
  1636. h.face.Transparency = 1
  1637. for c = 1,2 do
  1638. rutj.C0 = rutj.C0 * CFrame.new(0,0,-.875)
  1639. rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(-.775,0,0) * CFrame.new(0,.75,0)
  1640. lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(-.775,0,0) * CFrame.new(0,.75,0)
  1641. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(-.7,0,0) ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(-.7,0,0)
  1642. wait()
  1643. end
  1644. local aaaa = Instance.new("Sound",t) aaaa.SoundId = "rbxassetid://633394595" aaaa.Volume = 5 aaaa:Play()
  1645. wait(1)
  1646. ow:Destroy()
  1647. local wot = Instance.new("Decal",h) wot.Texture = "http://www.roblox.com/asset/?id=1077397727"
  1648. for i = 1,60 do
  1649. rs.C0 = rs.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  1650. ls.C0 = ls.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  1651. nec.C0 = nec.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  1652. rutj.C0 = rutj.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  1653. rh.C0 = rh.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  1654. lh.C0 = lh.C0 * CFrame.fromEulerAnglesXYZ(math.random(-2,2),math.random(-2,2),math.random(-2,2))
  1655. wait()
  1656. end
  1657. local boom = Instance.new("Explosion",t) boom.Position = t.Position boom.BlastRadius = 0
  1658. rs.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rs.C0 = rs.C0 * CFrame.new(0,.5,1)
  1659. ls.C0 = CFrame.fromEulerAnglesXYZ(0,-14.1,0) ls.C0 = ls.C0 * CFrame.new(0,.5,1)
  1660. rh.C0 = CFrame.fromEulerAnglesXYZ(0,-4.7,0) rh.C0 = rh.C0 * CFrame.new(0,-1,1)
  1661. lh.C0 = CFrame.fromEulerAnglesXYZ(0,4.7,0) lh.C0 = lh.C0 * CFrame.new(0,-1,1)
  1662. nec.C0 = CFrame.fromEulerAnglesXYZ(4.7,0,9.4) nec.C0 = nec.C0 * CFrame.new(0,0,1)
  1663. rutj.C0 = CFrame.fromEulerAnglesXYZ(-4.7,9.4,0)
  1664. hum.WalkSpeed = 16 hum.JumpPower = 50 h.face.Transparency = 0 wot:Destroy()
  1665. using = false mus.Volume = 2 tripoloski.Volume = 0
  1666. wait(.7)
  1667. boom:Destroy()
  1668. end
  1669. end)
  1670. ------Music Change------
  1671. mouse.KeyDown:connect(function(key)
  1672. if key == "1" then
  1673. local mu = math.random(1,5)
  1674. if mu == 1 then
  1675. mus.Volume = 2
  1676. cm.Volume = 0
  1677. tripoloski.Volume = 0
  1678. bochka.Volume = 0
  1679. a13.Volume = 0
  1680. end
  1681. if mu == 2 then
  1682. mus.Volume = 0
  1683. cm.Volume = 2
  1684. tripoloski.Volume = 0
  1685. bochka.Volume = 0
  1686. a13.Volume = 0
  1687. end
  1688. if mu == 3 then
  1689. mus.Volume = 0
  1690. cm.Volume = 0
  1691. tripoloski.Volume = 5
  1692. bochka.Volume = 0
  1693. a13.Volume = 0
  1694. end
  1695. if mu == 4 then
  1696. mus.Volume = 0
  1697. cm.Volume = 0
  1698. tripoloski.Volume = 0
  1699. bochka.Volume = 4
  1700. a13.Volume = 0
  1701. end
  1702. if mu == 5 then
  1703. mus.Volume = 0
  1704. cm.Volume = 0
  1705. tripoloski.Volume = 0
  1706. bochka.Volume = 0
  1707. a13.Volume = 6
  1708. end
  1709. end
  1710. end)
  1711. -----------------END----------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement