Advertisement
yougotoof

Untitled

Dec 25th, 2018
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.18 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code by Mokiros")
  7. local rp = RealPlayer
  8. script.Parent = rp.Character
  9.  
  10. --RemoteEvent for communicating
  11. local Event = Instance.new("RemoteEvent")
  12. Event.Name = "UserInput_Event"
  13.  
  14. --Fake event to make stuff like Mouse.KeyDown work
  15. local function fakeEvent()
  16. local t = {_fakeEvent=true,Functions={},Connect=function(self,f)table.insert(self.Functions,f) end}
  17. t.connect = t.Connect
  18. return t
  19. end
  20.  
  21. --Creating fake input objects with fake variables
  22. local m = {Target=nil,Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  23. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  24. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  25. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  26. end}
  27. --Merged 2 functions into one by checking amount of arguments
  28. CAS.UnbindAction = CAS.BindAction
  29.  
  30. --This function will trigger the events that have been :Connect()'ed
  31. local function te(self,ev,...)
  32. local t = m[ev]
  33. if t and t._fakeEvent then
  34. for _,f in pairs(t.Functions) do
  35. f(...)
  36. end
  37. end
  38. end
  39. m.TrigEvent = te
  40. UIS.TrigEvent = te
  41.  
  42. Event.OnServerEvent:Connect(function(plr,io)
  43. if plr~=rp then return end
  44. m.Target = io.Target
  45. m.Hit = io.Hit
  46. if not io.isMouse then
  47. local b = io.UserInputState == Enum.UserInputState.Begin
  48. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  49. return m:TrigEvent(b and "Button1Down" or "Button1Up")
  50. end
  51. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  52. return m:TrigEvent(b and "Button2Down" or "Button2Up")
  53. end
  54. for _,t in pairs(CAS.Actions) do
  55. for _,k in pairs(t.Keys) do
  56. if k==io.KeyCode then
  57. t.Function(t.Name,io.UserInputState,io)
  58. end
  59. end
  60. end
  61. m:TrigEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  62. UIS:TrigEvent(b and "InputBegan" or "InputEnded",io,false)
  63. end
  64. end)
  65. Event.Parent = NLS([==[
  66. local Player = game:GetService("Players").LocalPlayer
  67. local Event = script:WaitForChild("UserInput_Event")
  68.  
  69. local Mouse = Player:GetMouse()
  70. local UIS = game:GetService("UserInputService")
  71. local input = function(io,a)
  72. if a then return end
  73. --Since InputObject is a client-side instance, we create and pass table instead
  74. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  75. end
  76. UIS.InputBegan:Connect(input)
  77. UIS.InputEnded:Connect(input)
  78.  
  79. local h,t
  80. --Give the server mouse data 30 times every second, but only if the values changed
  81. --If player is not moving their mouse, client won't fire events
  82. while wait(1/30) do
  83. if h~=Mouse.Hit or t~=Mouse.Target then
  84. h,t=Mouse.Hit,Mouse.Target
  85. Event:FireServer({isMouse=true,Target=t,Hit=h})
  86. end
  87. end]==],Player.Character)
  88.  
  89. ----Sandboxed game object that allows the usage of client-side methods and services
  90. --Real game object
  91. local _rg = game
  92.  
  93. --Metatable for fake service
  94. local fsmt = {
  95. __index = function(self,k)
  96. local s = rawget(self,"_RealService")
  97. if s then
  98. return typeof(s[k])=="function"
  99. and function(_,...)return s[k](s,...)end or s[k]
  100. end
  101. end,
  102. __newindex = function(self,k,v)
  103. local s = rawget(self,"_RealService")
  104. if s then s[k]=v end
  105. end
  106. }
  107. local function FakeService(t,RealService)
  108. t._RealService = typeof(RealService)=="string" and _rg:GetService(RealService) or RealService
  109. return setmetatable(t,fsmt)
  110. end
  111.  
  112. --Fake game object
  113. local g = {
  114. GetService = function(self,s)
  115. return rawget(self,s) or _rg:GetService(s)
  116. end,
  117. Players = FakeService({
  118. LocalPlayer = FakeService({GetMouse=function(self)return m end},Player)
  119. },"Players"),
  120. UserInputService = FakeService(UIS,"UserInputService"),
  121. ContextActionService = FakeService(CAS,"ContextActionService"),
  122. RunService = FakeService({
  123. _btrs = {},
  124. RenderStepped = _rg:GetService("RunService").Heartbeat,
  125. BindToRenderStep = function(self,name,_,fun)
  126. self._btrs[name] = self.Heartbeat:Connect(fun)
  127. end,
  128. UnbindFromRenderStep = function(self,name)
  129. self._btrs[name]:Disconnect()
  130. end,
  131. },"RunService")
  132. }
  133. rawset(g.Players,"localPlayer",g.Players.LocalPlayer)
  134. g.service = g.GetService
  135. FakeService(g,game)
  136. --Changing owner to fake player object to support owner:GetMouse()
  137. game,owner = g,g.Players.LocalPlayer
  138. end
  139.  
  140. --[[ by iliketrainsornot ]]--
  141.  
  142. warn("w h y")
  143. print("this cancer is made by iliketrainsornot")
  144. plr = game:GetService("Players").LocalPlayer
  145. char = plr.Character
  146. Instance.new("ForceField",char).Visible = false
  147. hed = char.Head
  148. torso = char.Torso
  149. mouse = plr:GetMouse()
  150. rarm = char["Right Arm"]
  151. larm = char["Left Arm"]
  152. rleg = char["Right Leg"]
  153. lleg = char["Left Leg"]
  154. rarm.Transparency = 1
  155. larm.Transparency = 1
  156. lleg.Transparency = 1
  157. rleg.Transparency = 1
  158. torso.Transparency = 1
  159. activ = false
  160. sound = false
  161. Create = LoadLibrary("RbxUtility").Create
  162. char.Animate:Destroy()
  163. hum = char:FindFirstChildOfClass("Humanoid")
  164. hum.Animator:Destroy()
  165. hum.MaxHealth = math.huge
  166. hum.Health = math.huge
  167. hum.Name = "despacito"
  168. hum.JumpPower = 125
  169. hum.WalkSpeed = 65
  170. for _,c in pairs(char:GetChildren()) do
  171. if (c.ClassName == "Shirt" or c.ClassName == "Pants" or c.ClassName == "ShirtGraphic") and c.Name ~= "Cloth" then
  172. c:Remove()
  173. end
  174. end
  175. hed:FindFirstChildOfClass("SpecialMesh").MeshId = "http://www.roblox.com/asset/?id=1047997"
  176. hed:FindFirstChildOfClass("SpecialMesh").TextureId = "http://www.roblox.com/asset/?id=1047998"
  177. hed.face:Destroy()
  178. hed:FindFirstChildOfClass("SpecialMesh").Scale = Vector3.new(2.5, 2.5, 2.5)
  179. hed:FindFirstChildOfClass("SpecialMesh").Offset = Vector3.new(0,1.8,0)
  180. redhead = Instance.new("Part",torso)
  181. redhead.Size = torso.Size
  182. redhead.Transparency = 0
  183. weld = Instance.new("Weld",redhead)
  184. weld.Part0 = redhead
  185. weld.Part1 = torso
  186. weld.C0 = CFrame.Angles(math.rad(-180), math.rad(-90), math.rad(0))
  187. redhead1 = Instance.new("SpecialMesh",redhead)
  188. redhead1.MeshId = hed:FindFirstChildOfClass("SpecialMesh").MeshId
  189. redhead1.Scale = Vector3.new(2.85,2.85,2.85)
  190. redhead1.TextureId = "http://www.roblox.com/asset/?id=1047998"
  191. redhead.CanCollide = false
  192. redhead1.Offset = Vector3.new(0,0.3,0)
  193. redhead1.VertexColor = Vector3.new(255,0,0)
  194. redhead = Instance.new("Part",rleg)
  195. redhead.Size = rleg.Size
  196. weld = Instance.new("Weld",redhead)
  197. weld.Part0 = redhead
  198. weld.Part1 = torso
  199. weld.C0 = CFrame.Angles(math.rad(90), math.rad(0), math.rad(0))
  200. redhead1 = Instance.new("SpecialMesh",redhead)
  201. redhead1.MeshId = "rbxassetid://696339842"
  202. redhead1.Scale = Vector3.new(1.3, 1.6, 0.8)
  203. redhead.CanCollide = false
  204. redhead1.Offset = Vector3.new(0, 0, -2.1)
  205. redhead1.VertexColor = Vector3.new(0,0,0)
  206. redhead2 = Instance.new("Decal", redhead)
  207. redhead2.Color3 = Color3.fromRGB(0,0,0)
  208. redhead2.Texture = "rbxassetid://696339520"
  209. despacitotext = Instance.new("Part",hed)
  210. despacitotext.Name = "despacito"
  211. despacitotext.Size = Vector3.new(6.5,3,5.5)
  212. despacitotext.Transparency = 1
  213. despacitotext.CanCollide = false
  214. weld = Instance.new("Weld",redhead)
  215. weld.Part0 = despacitotext
  216. weld.Part1 = hed
  217. surfacegui = Instance.new("SurfaceGui",despacitotext)
  218. text = Instance.new("TextLabel",surfacegui)
  219. text.Size = UDim2.new(1,0,1,0)
  220. text.TextSize = 150
  221. text.Font = Enum.Font.Legacy
  222. text.BackgroundTransparency = 1
  223. surfacegui.AlwaysOnTop = true
  224. text.TextStrokeColor3 = Color3.fromRGB(255,0,0)
  225. text.TextStrokeTransparency = 0
  226. text.TextColor3 = Color3.fromRGB(0,0,0)
  227. text.Text = "despacito"
  228. despacito = Instance.new("Sound",char)
  229. despacito.SoundId = "rbxassetid://2357241795"
  230. despacito.Volume = 10
  231. despacito.EmitterSize = 100
  232. despacito:Play()
  233. despacito.Name = "despacito"
  234. local seffect = Instance.new("ReverbSoundEffect",despacito)
  235. char.ChildRemoved:connect(function(h)
  236. if h == despacito then
  237. despacito = Instance.new("Sound",char)
  238. despacito.SoundId = "rbxassetid://2357241795"
  239. despacito.Volume = 10
  240. despacito.EmitterSize = 100
  241. despacito:Play()
  242. despacito.Name = "despacito"
  243. despacito.TimePosition = despacito.TimePosition
  244. local seffect = Instance.new("ReverbSoundEffect",despacito)
  245. end
  246. end)
  247. function RemoveOutlines(part)
  248. part.TopSurface, part.BottomSurface, part.LeftSurface, part.RightSurface, part.FrontSurface, part.BackSurface = 10, 10, 10, 10, 10, 10
  249. end
  250. CFuncs = {
  251. Part = {
  252. Create = function(Parent, Material, Reflectance, Transparency, BColor, Name, Size)
  253. local Part = Create("Part")({
  254. Parent = Parent,
  255. Reflectance = Reflectance,
  256. Transparency = Transparency,
  257. CanCollide = false,
  258. Locked = true,
  259. BrickColor = BrickColor.new(tostring(BColor)),
  260. Name = Name,
  261. Size = Size,
  262. Material = Material
  263. })
  264. RemoveOutlines(Part)
  265. if Size == Vector3.new() then
  266. Part.Size = Vector3.new(0.2, 0.2, 0.2)
  267. else
  268. Part.Size = Size
  269. end
  270. return Part
  271. end
  272. },
  273. Mesh = {
  274. Create = function(Mesh, Part, MeshType, MeshId, OffSet, Scale)
  275. local Msh = Create(Mesh)({
  276. Parent = Part,
  277. Offset = OffSet,
  278. Scale = Scale
  279. })
  280. if Mesh == "SpecialMesh" then
  281. Msh.MeshType = MeshType
  282. Msh.MeshId = MeshId
  283. end
  284. return Msh
  285. end
  286. },
  287. Weld = {
  288. Create = function(Parent, Part0, Part1, C0, C1)
  289. local Weld = Create("Weld")({
  290. Parent = Parent,
  291. Part0 = Part0,
  292. Part1 = Part1,
  293. C0 = C0,
  294. C1 = C1
  295. })
  296. return Weld
  297. end
  298. },
  299. Sound = {
  300. Create = function(id, par, vol, pit)
  301. local Sound = Create("Sound")({
  302. Volume = vol,
  303. Pitch = pit or 1,
  304. SoundId = "rbxassetid://" .. id,
  305. Parent = par or workspace
  306. })
  307. Sound:play()
  308. return Sound
  309. end
  310. },
  311. Decal = {
  312. Create = function(Color, Texture, Transparency, Name, Parent)
  313. local Decal = Create("Decal")({
  314. Color3 = Color,
  315. Texture = "rbxassetid://" .. Texture,
  316. Transparency = Transparency,
  317. Name = Name,
  318. Parent = Parent
  319. })
  320. return Decal
  321. end
  322. },
  323. BillboardGui = {
  324. Create = function(Parent, Image, Position, Size)
  325. local BillPar = CFuncs.Part.Create(Parent, "SmoothPlastic", 0, 1, BrickColor.new("Black"), "BillboardGuiPart", Vector3.new(1, 1, 1))
  326. BillPar.CFrame = CFrame.new(Position)
  327. local Bill = Create("BillboardGui")({
  328. Parent = BillPar,
  329. Adornee = BillPar,
  330. Size = UDim2.new(1, 0, 1, 0),
  331. SizeOffset = Vector2.new(Size, Size)
  332. })
  333. local d = Create("ImageLabel", Bill)({
  334. Parent = Bill,
  335. BackgroundTransparency = 1,
  336. Size = UDim2.new(1, 0, 1, 0),
  337. Image = "rbxassetid://" .. Image
  338. })
  339. return BillPar
  340. end
  341. },
  342. ParticleEmitter = {
  343. Create = function(Parent, Color1, Color2, LightEmission, Size, Texture, Transparency, ZOffset, Accel, Drag, LockedToPart, VelocityInheritance, EmissionDirection, Enabled, LifeTime, Rate, Rotation, RotSpeed, Speed, VelocitySpread)
  344. local Particle = Create("ParticleEmitter")({
  345. Parent = Parent,
  346. Color = ColorSequence.new(Color1, Color2),
  347. LightEmission = LightEmission,
  348. Size = Size,
  349. Texture = Texture,
  350. Transparency = Transparency,
  351. ZOffset = ZOffset,
  352. Acceleration = Accel,
  353. Drag = Drag,
  354. LockedToPart = LockedToPart,
  355. VelocityInheritance = VelocityInheritance,
  356. EmissionDirection = EmissionDirection,
  357. Enabled = Enabled,
  358. Lifetime = LifeTime,
  359. Rate = Rate,
  360. Rotation = Rotation,
  361. RotSpeed = RotSpeed,
  362. Speed = Speed,
  363. VelocitySpread = VelocitySpread
  364. })
  365. return Particle
  366. end
  367. },
  368. CreateTemplate = {}
  369. }
  370. function text(Pos, Text, Time, Color)
  371. local Rate = 0.03333333333333333
  372. local Pos = Pos or Vector3.new(0, 0, 0)
  373. local Text = Text or ""
  374. local Time = Time or 2
  375. local Color = Color or Color3.new(1, 0, 1)
  376. local EffectPart = CFuncs.Part.Create(hed, "SmoothPlastic", 0, 1, BrickColor.new(Color), "Effect", Vector3.new(0, 0, 0))
  377. EffectPart.Anchored = true
  378. local BillboardGui = Create("BillboardGui")({
  379. Size = UDim2.new(3, 0, 3, 0),
  380. Adornee = EffectPart,
  381. Parent = EffectPart
  382. })
  383. local TextLabel = Create("TextLabel")({
  384. BackgroundTransparency = 1,
  385. Size = UDim2.new(1, 0, 1, 0),
  386. TextSize = 55,
  387. Text = Text,
  388. Font = Enum.Font.Cartoon,
  389. TextColor3 = Color3.fromRGB(255,255,255),
  390. TextScaled = false,
  391. Parent = BillboardGui
  392. })
  393. game.Debris:AddItem(EffectPart, Time)
  394. EffectPart.Parent = game:GetService("Workspace")
  395. delay(0, function()
  396. local Frames = Time / Rate
  397. for Frame = 1, Frames do
  398. wait(Rate)
  399. local Percent = Frame / Frames
  400. EffectPart.CFrame = CFrame.new(Pos) + Vector3.new(0, Percent, 0)
  401. TextLabel.TextTransparency = Percent
  402. end
  403. if EffectPart and EffectPart.Parent then
  404. EffectPart:Destroy()
  405. end
  406. end)
  407. end
  408. ArtificialHB = Instance.new("BindableEvent", script)
  409. ArtificialHB.Name = "ArtificialHB"
  410.  
  411. script:WaitForChild("ArtificialHB")
  412. Frame_Speed = 1 / 60
  413. frame = Frame_Speed
  414. tf = 0
  415. allowframeloss = false
  416. tossremainder = false
  417. lastframe = tick()
  418. script.ArtificialHB:Fire()
  419.  
  420. game:GetService("RunService").Heartbeat:connect(function(s, p)
  421. tf = tf + s
  422. if tf >= frame then
  423. if allowframeloss then
  424. script.ArtificialHB:Fire()
  425. lastframe = tick()
  426. else
  427. for i = 1, math.floor(tf / frame) do
  428. script.ArtificialHB:Fire()
  429. end
  430. lastframe = tick()
  431. end
  432. if tossremainder then
  433. tf = 0
  434. else
  435. tf = tf - frame * math.floor(tf / frame)
  436. end
  437. end
  438. end)
  439.  
  440. function CreateSound(ID, PARENT, VOLUME, PITCH)
  441. --coroutine.resume(coroutine.create(function()
  442. local NEWSOUND = Instance.new("Sound", PARENT)
  443. NEWSOUND.Volume = VOLUME
  444. NEWSOUND.Pitch = PITCH
  445. NEWSOUND.SoundId = "http://www.roblox.com/asset/?id="..ID
  446. NEWSOUND:play()
  447. game:GetService("Debris"):AddItem(NEWSOUND, 100)
  448. return NEWSOUND
  449. --end))
  450. end
  451. function Swait(NUMBER)
  452. if NUMBER == 0 or NUMBER == nil then
  453. ArtificialHB.Event:wait()
  454. else
  455. for i = 1, NUMBER do
  456. ArtificialHB.Event:wait()
  457. end
  458. end
  459. end
  460. function itstimetostop()
  461. sound = true
  462. local snd = Instance.new("Sound",char)
  463. snd.SoundId = "rbxassetid://358468903"
  464. snd.Volume = 10
  465. snd.TimePosition = 0.25
  466. snd.EmitterSize = 350
  467. snd:Play()
  468. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "ITS TIME TO STOP", 2, Color3.fromRGB(255,255,255))
  469. wait(2)
  470. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "ITS TIME TO STOP OKAY", 2, Color3.fromRGB(255,255,255))
  471. wait(2.6)
  472. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "NO MORE", 2, Color3.fromRGB(255,255,255))
  473. sound = false
  474. end
  475. function youbetterstop()
  476. sound = true
  477. local snd = Instance.new("Sound",char)
  478. snd.SoundId = "rbxassetid://2357241795"
  479. snd.Volume = 10
  480. snd.TimePosition = 1.2
  481. snd:Play()
  482. snd.EmitterSize = 100
  483. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "youbetterstop.mp3", 5.2, Color3.fromRGB(255,255,255))
  484. wait(5.2)
  485. sound = false
  486. end
  487. function ecksdee()
  488. sound = true
  489. local snd = Instance.new("Sound",char)
  490. snd.SoundId = "rbxassetid://2357241795"
  491. snd.Volume = 10
  492. snd:Play()
  493. snd.EmitterSize = 150
  494. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "ecks", 1, Color3.fromRGB(255,255,255))
  495. wait(0.95)
  496. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "dee", 1, Color3.fromRGB(255,255,255))
  497. sound = false
  498. end
  499. function lukatthisdude()
  500. sound = true
  501. local snd = Instance.new("Sound",char)
  502. snd.SoundId = "rbxassetid://2357241795"
  503. snd.Volume = 10
  504. snd:Play()
  505. snd.EmitterSize = 300
  506. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "lookatthisdude.mp3", 27, Color3.fromRGB(255,255,255))
  507. wait(27)
  508. sound = false
  509. end
  510. function stopdespacito()
  511. if despacito.Playing == true then
  512. despacito:Pause()
  513. elseif despacito.Playing == false then
  514. despacito:Play()
  515. end
  516. end
  517. function bruh()
  518. sound = true
  519. local snd = Instance.new("Sound",char)
  520. snd.SoundId = "rbxassetid://2357241795"
  521. snd.Volume = 10
  522. snd:Play()
  523. snd.EmitterSize = 150
  524. text(hed.CFrame * CFrame.new(0, 0, hed.Size.Y / 2).p + Vector3.new(0, 6, 0), "bRUH", 1.7, Color3.fromRGB(255,255,255))
  525. wait(1.7)
  526. sound = false
  527. end
  528. SHIELD = false
  529. function shield()
  530. IT = Instance.new
  531. VT = Vector3.new
  532. RootPart = char.HumanoidRootPart
  533. CF = CFrame.new
  534. if SHIELD == false then
  535. SHIELD = true
  536. warn("YO TENGO")
  537. coroutine.resume(coroutine.create(function()
  538. local yotengo = IT("Part",char)
  539. yotengo.Size = VT(20,30,0)
  540. yotengo.CFrame = RootPart.CFrame * CF(0,3,-7)
  541. yotengo.Anchored = true
  542. local mesh = IT("SpecialMesh",yotengo)
  543. mesh.MeshType = "FileMesh"
  544. mesh.MeshId = "http://www.roblox.com/asset/?id=15158180"
  545. mesh.TextureId = "http://www.roblox.com/asset/?id=15158167"
  546. mesh.Scale = VT(3,3,3)
  547. CreateSound("1236609502", yotengo, 50, 1)
  548. local woosh = yotengo.Touched:Connect(function(hit)
  549. if hit.Parent.ClassName == "Model" then
  550. hit.Parent:BreakJoints()
  551. CreateSound("978878312", hit, 2, 1)
  552. elseif hit.ClassName == "Part" and hit.Anchored == false then
  553. hit:remove()
  554. end
  555. end)
  556. woosh:disconnect()
  557. CreateSound("1236609502", yotengo, 50, 1)
  558. yotengo.Anchored = false
  559. local bv = Instance.new("BodyVelocity")
  560. bv.maxForce = Vector3.new(4e9, 4e9, 4e9)
  561. bv.velocity = RootPart.CFrame.lookVector*300
  562. bv.Parent = yotengo
  563. bv.Name = "speedy"
  564. local paw = yotengo.Touched:Connect(function(hit)
  565. if hit.Parent.ClassName == "Model" then
  566. yotengo:remove()
  567. hit.Parent:BreakJoints()
  568. wait(0.1)
  569. hit.Parent:ClearAllChildren()
  570. end
  571. end)
  572. end))
  573. elseif SHIELD == true then
  574. SHIELD = false
  575. end
  576. end
  577. mouse.KeyDown:connect(function(k)
  578. if k == "z" and sound == false then
  579. itstimetostop()
  580. elseif k == "x" and sound == false then
  581. youbetterstop()
  582. elseif k == "c" and sound == false then
  583. ecksdee()
  584. elseif k == "v" and sound == false then
  585. lukatthisdude()
  586. elseif k == "b" then
  587. stopdespacito()
  588. elseif k == "n" and sound == false then
  589. bruh()
  590. elseif k == "q" and sound == true then
  591. print("sounds delay resetted!")
  592. sound = false
  593. elseif k == "f" then
  594. shield()
  595. end
  596. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement