carlosname

Untitled

Apr 28th, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. if game:GetService("RunService"):IsClient()then error("Please run as a server script. Use h/ instead of hl/.")end;print("FE Compatibility: by WaverlyCole");InternalData = {}
  2. do
  3. script.Parent = owner.Character
  4. local Event = Instance.new("RemoteEvent");Event.Name = "UserInput"
  5. local function NewFakeEvent()
  6. local Bind = Instance.new("BindableEvent")
  7. local Fake;Fake = {Connections = {},
  8. fakeEvent=true;
  9. Connect=function(self,Func)
  10. Bind.Event:connect(Func)
  11. self.Connections[Bind] = true
  12. return setmetatable({Connected = true},{
  13. __index = function (self,Index)
  14. if Index:lower() == "disconnect" then
  15. return function() Fake.Connections[Bind] = false;self.Connected = false end
  16. end
  17. return Fake[Index]
  18. end;
  19. __tostring = function() return "Connection" end;
  20. })
  21. end}
  22. Fake.connect = Fake.Connect;return Fake;
  23. end
  24. local Mouse = {Target=nil,Hit=CFrame.new(),KeyUp=NewFakeEvent(),KeyDown=NewFakeEvent(),Button1Up=NewFakeEvent(),Button1Down=NewFakeEvent()}
  25. local UserInputService = {InputBegan=NewFakeEvent(),InputEnded=NewFakeEvent()}
  26. local ContextActionService = {Actions={},BindAction = function(self,actionName,Func,touch,...)
  27. self.Actions[actionName] = Func and {Name=actionName,Function=Func,Keys={...}} or nil
  28. end};ContextActionService.UnBindAction = ContextActionService.BindAction
  29. local function TriggerEvent(self,Event,...)
  30. local Trigger = Mouse[Event]
  31. if Trigger and Trigger.fakeEvent and Trigger.Connections then
  32. for Connection,Active in pairs(Trigger.Connections) do if Active then Connection:Fire(...) end end
  33. end
  34. end
  35. Mouse.TrigEvent = TriggerEvent;UserInputService.TrigEvent = TriggerEvent
  36. Event.OnServerEvent:Connect(function(FiredBy,Input)
  37. if FiredBy.Name ~= owner.Name then return end
  38. if Input.MouseEvent then
  39. Mouse.Target = Input.Target;Mouse.Hit = Input.Hit
  40. else
  41. local Begin = Input.UserInputState == Enum.UserInputState.Begin
  42. if Input.UserInputType == Enum.UserInputType.MouseButton1 then return Mouse:TrigEvent(Begin and "Button1Down" or "Button1Up") end
  43. for _,Action in pairs(ContextActionService.Actions) do
  44. for _,Key in pairs(Action.Keys) do if Key==Input.KeyCode then Action.Function(Action.Name,Input.UserInputState,Input) end end
  45. end
  46. Mouse:TrigEvent(Begin and "KeyDown" or "KeyUp",Input.KeyCode.Name:lower())
  47. UserInputService:TrigEvent(Begin and "InputBegan" or "InputEnded",Input,false)
  48. end
  49. end)
  50. InternalData["Mouse"] = Mouse;InternalData["ContextActionService"] = ContextActionService;InternalData["UserInputService"] = UserInputService
  51. Event.Parent = NLS([[
  52. local Player = owner;local Event = script:WaitForChild("UserInput");local UserInputService = game:GetService("UserInputService");local Mouse = Player:GetMouse()
  53. local Input = function(Input,gameProcessedEvent)
  54. if gameProcessedEvent then return end
  55. Event:FireServer({KeyCode=Input.KeyCode,UserInputType=Input.UserInputType,UserInputState=Input.UserInputState})
  56. end
  57. UserInputService.InputBegan:Connect(Input);UserInputService.InputEnded:Connect(Input)
  58. local Hit,Target
  59. while wait(1/30) do
  60. if Hit ~= Mouse.Hit or Target ~= Mouse.Target then
  61. Hit,Target = Mouse.Hit,Mouse.Target;Event:FireServer({["MouseEvent"]=true,["Target"]=Target,["Hit"]=Hit})
  62. end
  63. end
  64. ]],owner.Character)
  65. end
  66. RealGame = game;game = setmetatable({},{
  67. __index = function (self,Index)
  68. local Sandbox = function (Thing)
  69. if Thing:IsA("Player") then
  70. local RealPlayer = Thing
  71. return setmetatable({},{
  72. __index = function (self,Index)
  73. local Type = type(RealPlayer[Index])
  74. if Type == "function" then
  75. if Index:lower() == "getmouse" or Index:lower() == "mouse" then
  76. return function (self)return InternalData["Mouse"] end
  77. end
  78. return function (self,...)return RealPlayer[Index](RealPlayer,...) end
  79. end
  80. return RealPlayer[Index]
  81. end;
  82. __tostring = function(self) return RealPlayer.Name end
  83. })
  84. end
  85. end
  86. if RealGame[Index] then
  87. local Type = type(RealGame[Index])
  88. if Type == "function" then
  89. if Index:lower() == "getservice" or Index:lower() == "service" then
  90. return function (self,Service)
  91. local FakeServices = {
  92. ["players"] = function()
  93. return setmetatable({},{
  94. __index = function (self2,Index2)
  95. local RealService = RealGame:GetService(Service)
  96. local Type2 = type(Index2)
  97. if Type2 == "function" then
  98. return function (self,...) return RealService[Index2](RealService,...)end
  99. else
  100. if Index2:lower() == "localplayer" then return Sandbox(owner) end
  101. return RealService[Index2]
  102. end
  103. end;
  104. __tostring = function(self) return RealGame:GetService(Service).Name end
  105. })
  106. end;
  107. ["contextactionservice"] = function() return InternalData["ContextActionService"] end;
  108. ["userinputservice"] = function() return InternalData["UserInputService"] end;
  109. ["runservice"] = function()
  110. return setmetatable({},{
  111. __index = function(self2,Index2)
  112. local RealService = RealGame:GetService(Service)
  113. local Type2 = type(Index2)
  114. if Type2 == "function" then
  115. return function (self,...) return RealService[Index2](RealService,...) end
  116. else
  117. local RunServices = {
  118. ["bindtorenderstep"] = function() return function (self,Name,Priority,Function) return RealGame:GetService("RunService").Stepped:Connect(Function) end end;
  119. ["renderstepped"] = function() return RealService["Stepped"] end
  120. }
  121. if RunServices[Index2:lower()] then return RunServices[Index2:lower()]() end
  122. return RealService[Index2]
  123. end
  124. end
  125. })
  126. end
  127. }
  128. if FakeServices[Service:lower()] then return FakeServices[Service:lower()]() end
  129. return RealGame:GetService(Service)
  130. end
  131. end
  132. return function (self,...) return RealGame[Index](RealGame,...) end
  133. else
  134. if game:GetService(Index) then return game:GetService(Index) end
  135. return RealGame[Index]
  136. end
  137. end
  138. return nil
  139. end
  140. });Game = game;owner = game:GetService("Players").LocalPlayer;script = Instance.new("Script");print("Complete! Running...")
  141.  
  142. print("Complete! Running...")
  143.  
  144. print("controls:")
  145. print("z - make it morning")
  146. print("x - make it night")
  147. print("c - clean workspace")
  148. print("v - heal the player your mouse is pointing at")
  149. print("f - make the player your mouse is pointing at fat")
  150. print("n - make everyone fat")
  151. print("l - annihilate the player your mouse is pointing at")
  152. print("p - Heal yourself")
  153. print("k - kill other players")
  154. print("b - control the player your mouse it pointing at")
  155. print("m - tp evryone to you")
  156. print("j - send the player your mouse is pointing at to 'heaven'")
  157. print("q - spawn pet")
  158. oil = game.Players.LocalPlayer
  159. sauce = oil.Character
  160. tor = sauce:FindFirstChild("Torso") or sauce:FindFirstChild("UpperTorso")
  161. head = sauce:FindFirstChild("Head")
  162. larm = sauce:FindFirstChild("Left Arm") or sauce:FindFirstChild("LeftUpperArm")
  163. rarm = sauce:FindFirstChild("Right Arm") or sauce:FindFirstChild("RightUpperArm")
  164. rleg = sauce:FindFirstChild("Right Leg") or sauce:FindFirstChild("RightUpperLeg")
  165. lleg = sauce:FindFirstChild("Left Leg") or sauce:FindFirstChild("LeftUpperLeg")
  166. hum = sauce:FindFirstChildOfClass("Humanoid")
  167. humroot = sauce:FindFirstChild("HumanoidRootPart")
  168. mou = oil:GetMouse()
  169. remoteequipped = true
  170. controlling = false
  171. light = game:GetService("Lighting")
  172. tool = Instance.new("Tool", oil.Backpack)
  173. tool.Name = "Remote"
  174. hand = Instance.new("Part", tool)
  175. hand.Name = "Handle"
  176. hand.Size = Vector3.new(1, 1, 1)
  177. hand.Transparency = 1
  178.  
  179. tool.Equipped:connect(function()
  180. remoteequiped = true
  181. function pressed(key)
  182. if remoteequiped == true then
  183. if key == "x" then
  184. light.TimeOfDay = 21
  185. elseif key == "z" then
  186. light.TimeOfDay = 7
  187. elseif key == "c" then
  188. for i,v in pairs(workspace:GetChildren()) do
  189. if v:IsA("Part") and v.Name ~= "Base" then
  190. v.Locked = false
  191. v:remove()
  192. end
  193. if v:IsA("Model") and not v:FindFirstChildOfClass("Humanoid") then
  194. v:remove()
  195. end
  196. end
  197. elseif key == "p" then
  198. hum.Health = 1000
  199. elseif key == "k" then
  200. for i,v in pairs(workspace:GetChildren()) do
  201. if v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") and v.Name ~= sauce.Name then
  202. khum = v:FindFirstChildOfClass("Humanoid")
  203. khum.Health = 0
  204. end
  205. end
  206. elseif key == "m" then
  207. for i,v in pairs(workspace:GetChildren()) do
  208. if v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") and v.Name ~= sauce.Name then
  209. vtor = v:FindFirstChild("Torso" )or v:FindFirstChild("UpperTorso")
  210. vtor.CFrame = tor.CFrame * CFrame.new(0, 0, -5)
  211. end
  212. end
  213. elseif key == "v" then
  214. if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
  215. mouhum = mou.Target.Parent:FindFirstChildOfClass("Humanoid")
  216. mouhum.Health = mouhum.MaxHealth
  217. mouhead = mou.Target.Parent:FindFirstChild("Head")
  218. bill = Instance.new("BillboardGui", mouhead)
  219. bill.AlwaysOnTop = true
  220. bill.StudsOffset = Vector3.new(0, 2, 0)
  221. bill.Adornee = mouhead
  222. bill.Size = UDim2.new(5, 35, 5, 35)
  223. btext = Instance.new("TextLabel", bill)
  224. btext.Text = mou.Target.Parent.Name.." has been Healed!"
  225. btext.Font = "Bodoni"
  226. btext.TextSize = 30
  227. btext.TextScaled = true
  228. btext.BorderSizePixel = 0
  229. btext.BackgroundTransparency = 1
  230. btext.Size = UDim2.new(1.5, 0, 0.5, 0)
  231. btext.TextColor = BrickColor.new("Bright green")
  232. game:GetService("Debris"):AddItem(bill, 2)
  233. end
  234. elseif key == "l" then
  235. if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
  236. local nomoretor = mou.Target.Parent:FindFirstChild("Torso") or mou.Target.Parent:FindFirstChild("UpperTorso")
  237. local nomorehum = mou.Target.parent:FindFirstChildOfClass("Humanoid")
  238. local explo = Instance.new("Explosion", workspace)
  239. explo.Position = nomoretor.Position
  240. nomorehum.Health = 0
  241. end
  242. elseif key == "f" then
  243. if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
  244. local fatman = mou.Target.Parent
  245. local fatmanhum = fatman:FindFirstChildOfClass("Humanoid")
  246. fatmanhum.WalkSpeed = 8
  247. local fattor = mou.Target.Parent:FindFirstChild("Torso") or mou.Target.Parent:FindFirstChild("UpperTorso")
  248. local hinum = Instance.new("Sound", fattor)
  249. hinum.SoundId = "rbxassetid://1278031541"
  250. hinum.Volume = 10
  251. local realfat = Instance.new("Part", fattor)
  252. realfat.BrickColor = fattor.BrickColor
  253. realfat.Material = "SmoothPlastic"
  254. local supaweld = Instance.new("Weld", realfat)
  255. supaweld.Part0 = fattor
  256. supaweld.Part1 = realfat
  257. local fat = Instance.new("SpecialMesh", realfat)
  258. fat.MeshType = "Sphere"
  259. fat.Scale = Vector3.new(0.6, 1.6, 0.9)
  260. fat.Offset = Vector3.new(0, -0.4, -0.7)
  261. hinum:Play()
  262. if fatman:FindFirstChildOfClass("Shirt") then
  263. fatman:FindFirstChildOfClass("Shirt"):remove()
  264. end
  265. end
  266. elseif key == "b" then
  267. if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") and controlling == false then
  268. controlling = true
  269. cman = mou.Target.Parent
  270. mtor = cman:FindFirstChild("Torso") or cman:FindFirstChild("UpperTorso")
  271. mlarm = cman:FindFirstChild("Left Arm") or cman:FindFirstChild("LeftUpperArm")
  272. mrarm = cman:FindFirstChild("Right Arm") or cman:FindFirstChild("RightUpperArm")
  273. mlleg = cman:FindFirstChild("Left Leg") or cman:FindFirstChild("LeftUpperLeg")
  274. mrleg = cman:FindFirstChild("Right Leg") or cman:FindFirstChild("RightUpperLeg")
  275. mhead = cman:FindFirstChild("Head")
  276. mhum = cman:FindFirstChildOfClass("Humanoid")
  277. mhum.PlatformStand = true
  278. hum.NameOcclusion = "NoOcclusion"
  279. mface = head:FindFirstChild("face")
  280. mface.Transparency = 1
  281. humroot.Transparency = 1
  282. for i,v in pairs(sauce:GetChildren()) do
  283. if v:IsA("Part") then
  284. v.Transparency = 1
  285. end
  286. if v:IsA("Accessory") then
  287. v.Handle.Transparency = 1
  288. end
  289. end
  290. ow1 = Instance.new("Weld", tor)
  291. ow1.Part0 = tor
  292. ow1.Part1 = mtor
  293. ow2 = Instance.new("Weld", larm)
  294. ow2.Part0 = larm
  295. ow2.Part1 = mlarm
  296. ow3 = Instance.new("Weld", rarm)
  297. ow3.Part0 = rarm
  298. ow3.Part1 = mrarm
  299. ow4 = Instance.new("Weld", lleg)
  300. ow4.Part0 = lleg
  301. ow4.Part1 = mlleg
  302. ow5 = Instance.new("Weld", rleg)
  303. ow5.Part0 = rleg
  304. ow5.Part1 = mrleg
  305. ow6 = Instance.new("Weld", head)
  306. ow6.Part0 = head
  307. ow6.Part1 = mhead
  308. elseif controlling == true then
  309. controlling = false
  310. ow1:Destroy()
  311. ow2:Destroy()
  312. ow3:Destroy()
  313. ow4:Destroy()
  314. ow5:Destroy()
  315. ow6:Destroy()
  316. mhum.PlatformStand = false
  317. hum.NameOcclusion = "OccludeAll"
  318. humrootTransparency = 1
  319. mface.Transparency = 0
  320. for i,v in pairs(sauce:GetChildren()) do
  321. if v:IsA("Part") and v ~= humroot then
  322. v.Transparency = 0
  323. end
  324. if v:IsA("Accessory") then
  325. v.Handle.Transparency = 0
  326. end
  327. end
  328. end
  329. elseif key == "n" then
  330. for i,v in pairs(workspace:GetChildren()) do
  331. if v:IsA("Model") and v:FindFirstChildOfClass("Humanoid") and v.Name ~= sauce.Name then
  332. local fatman = v
  333. local fatmanhum = fatman:FindFirstChildOfClass("Humanoid")
  334. fatmanhum.WalkSpeed = 8
  335. local fattor = fatman:FindFirstChild("Torso") or fatman:FindFirstChild("UpperTorso")
  336. local hinum2 = Instance.new("Sound", fattor)
  337. hinum2.SoundId = "rbxassetid://1278031541"
  338. hinum2.Volume = 10
  339. local realfat = Instance.new("Part", fattor)
  340. realfat.BrickColor = fattor.BrickColor
  341. realfat.Material = "SmoothPlastic"
  342. local supaweld = Instance.new("Weld", realfat)
  343. supaweld.Part0 = fattor
  344. supaweld.Part1 = realfat
  345. local fat = Instance.new("SpecialMesh", realfat)
  346. fat.MeshType = "Sphere"
  347. fat.Scale = Vector3.new(0.6, 1.6, 0.9)
  348. fat.Offset = Vector3.new(0, -0.4, -0.7)
  349. hinum2:Play()
  350. if fatman:FindFirstChildOfClass("Shirt") then
  351. fatman:FindFirstChildOfClass("Shirt"):remove()
  352. end
  353. end
  354. end
  355. elseif key == "j" then
  356. if mou.Target.Parent and mou.Target.Parent:FindFirstChildOfClass("Humanoid") then
  357. local goneman = mou.Target.Parent
  358. local gonehead = goneman:FindFirstChild("Head")
  359. local gonetor = goneman:FindFirstChild("Torso") or goneman:FindFirstChild("UpperTorso")
  360. local lightb = Instance.new("Part", goneman)
  361. lightb.Shape = "Cylinder"
  362. lightb.CanCollide = false
  363. lightb.Anchored = true
  364. lightb.Size = Vector3.new(300, 15, 15)
  365. lightb.Material = "Neon"
  366. lightb.Transparency = 0.5
  367. lightb.BrickColor = BrickColor.new("New Yeller")
  368. lightb.CFrame = gonetor.CFrame * CFrame.new(0, 140, 0) * CFrame.Angles(math.rad(0), math.rad(0), math.rad(90))
  369. local start = gonetor.CFrame
  370. local finish = lightb.CFrame * CFrame.new(140, 0, 0)
  371. for i = 0,1,.01 do
  372. gonetor.CFrame = start:lerp(finish, i)
  373. wait()
  374. end
  375. goneman:Destroy()
  376. wait(1.50)
  377. lightb:Destroy()
  378. end
  379. elseif key == "q" then
  380. if mou.Target ~= nil then
  381. local dont = Instance.new("Part", sauce)
  382. dont.CFrame = mou.Hit
  383. dont.Material = "Sand"
  384. dont.BrickColor = BrickColor.new("Royal purple")
  385. dont.Size = Vector3.new(-5, -5, -5)
  386. dont.Shape = "Ball"
  387. dont.Anchored = true
  388. local obj = Instance.new("Sound", dont)
  389. local feats = {937258314,4897528175,1585416938,1972238279,4216306082,3017465331,1145101566,561818043,1705749553,2785552824,2362140771,347049837,347049837,903445489,2593538490}
  390. obj.SoundId = "rbxassetid://"..feats[math.random(1,#feats)]
  391. obj.Volume = 7
  392. obj.Looped = true
  393. obj:Play()
  394. oil.Chatted:connect(function(msg)
  395. if msg:lower():sub(1, 7) == "plastic" then
  396. dont.Material = "Plastic"
  397. elseif msg:lower():sub(1, 5) == "slate" then
  398. dont.Material = "Slate"
  399. elseif msg:lower():sub(1, 3) == "ice" then
  400. dont.Material = "Ice"
  401. elseif msg:lower():sub(1, 5) == "metal" then
  402. dont.Material = "Metal"
  403. elseif msg:lower():sub(1, 4) == "neon" then
  404. dont.Material = "Neon"
  405. elseif msg:lower():sub(1, 5) == "grass" then
  406. dont.Material = "Grass"
  407. elseif msg:lower():sub(1, 4) == "sand" then
  408. dont.Material = "Sand"
  409. elseif msg:lower():sub(1, 9) == "woodplank" then
  410. dont.Material = "WoodPlanks"
  411. elseif msg:lower():sub(1, 4) == "wood" then
  412. dont.Material = "Wood"
  413. elseif msg:lower():sub(1, 6) == "marble" then
  414. dont.Material = "Marble"
  415. elseif msg:lower():sub(1, 8) == "concrete" then
  416. dont.Material = "Concrete"
  417. elseif msg:lower():sub(1, 5) == "brick" then
  418. dont.Material = "Brick"
  419. elseif msg:lower():sub(1, 7) == "granite" then
  420. dont.Material = "Granite"
  421. elseif msg:lower():sub(1, 6) == "pebble" then
  422. dont.Material = "Pebble"
  423. elseif msg:lower():sub(1, 11) == "cobblestone" then
  424. dont.Material = "Cobblestone"
  425. elseif msg:lower():sub(1, 13) == "corrodedmetal" then
  426. dont.Material = "CorrodedMetal"
  427. elseif msg:lower():sub(1, 12) == "diamondplate" then
  428. dont.Material = "DiamondPlate"
  429. elseif msg:lower():sub(1, 4) == "foil" then
  430. dont.Material = "Foil"
  431. elseif msg:lower():sub(1, 6) == "fabric" then
  432. dont.Material = "Fabric"
  433. elseif msg:lower():sub(1, 6) == "yellow" then
  434. dont.BrickColor = BrickColor.new("New Yeller")
  435. elseif msg:lower():sub(1, 6) == "purple" then
  436. dont.BrickColor = BrickColor.new("Bright violet")
  437. elseif msg:lower():sub(1, 3) == "red" then
  438. dont.BrickColor = BrickColor.new("Crimson")
  439. elseif msg:lower():sub(1, 5) == "black" then
  440. dont.BrickColor = BrickColor.new("Really black")
  441. elseif msg:lower():sub(1, 5) == "white" then
  442. dont.BrickColor = BrickColor.new("Institutional white")
  443. elseif msg:lower():sub(1, 4) == "pink" then
  444. dont.BrickColor = BrickColor.new("Hot pink")
  445. elseif msg:lower():sub(1, 5) == "green" then
  446. dont.BrickColor = BrickColor.new("Bright green")
  447. elseif msg:lower():sub(1, 4) == "grey" then
  448. dont.BrickColor = BrickColor.new("Medium stone grey")
  449. elseif msg:lower():sub(1, 5) == "brown" then
  450. dont.BrickColor = BrickColor.new("Burnt Sienna")
  451. elseif msg:lower():sub(1, 6) == "orange" then
  452. dont.BrickColor = BrickColor.new("Deep orange")
  453. elseif msg:lower():sub(1, 4) == "blue" then
  454. dont.BrickColor = BrickColor.new("Really blue")
  455. elseif msg:lower():sub(1, 4) == "cyan" then
  456. dont.BrickColor = BrickColor.new("Cyan")
  457. elseif msg:lower():sub(1, 6) == "pastel" then
  458. dont.BrickColor = BrickColor.new("Pastel yellow")
  459. elseif msg:lower():sub(1, 5) == "ghost" then
  460. dont.Transparency = 0.7
  461. elseif msg:lower():sub(1, 5) == "alive" then
  462. dont.Transparency = 0
  463. elseif msg:lower():sub(1, 5) == "block" then
  464. dont.Shape = "Block"
  465. elseif msg:lower():sub(1, 4) == "ball" then
  466. dont.Shape = "Ball"
  467. elseif msg:lower():sub(1, 3) == "bye" then
  468. dont:Destroy()
  469. elseif msg:lower():sub(1, 17) == "up" then
  470. obj.Volume = 15
  471. elseif msg:lower():sub(1, 17) == "skip" then
  472. obj:Stop()
  473. obj.SoundId = "rbxassetid://"..feats[math.random(1,#feats)]
  474. obj.Volume = 7
  475. obj.Looped = true
  476. obj:Play()
  477. elseif msg:lower():sub(1, 4) == "play" then
  478. obj:Play()
  479. elseif msg:lower():sub(1, 4) == "stop" then
  480. obj:Stop()
  481. elseif msg:lower():sub(1, 3) == "add" then
  482. obj:Stop()
  483. local arg = msg:sub(5, 999)
  484. obj.SoundId = "rbxassetid://"..arg
  485. obj:Play()
  486. end
  487. end)
  488. while true do
  489. for i = 0,1,.001 do
  490. dont.CFrame = dont.CFrame:lerp(tor.CFrame * CFrame.new(0, 5, 3), i)
  491. dont.Size = Vector3.new(obj.PlaybackLoudness/80, obj.PlaybackLoudness/80, obj.PlaybackLoudness/80)
  492. wait()
  493. end
  494. wait()
  495. end
  496. end
  497.  
  498. end
  499. end
  500. end
  501. mou.KeyDown:connect(pressed)
  502. end)
  503. tool.Unequipped:connect(function()
  504. remoteequipped = false
  505. end)
Add Comment
Please, Sign In to add comment