Advertisement
Guest User

Untitled

a guest
Apr 1st, 2020
158
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.34 KB | None | 0 0
  1. --https://github.com/Mokiros/roblox-FE-compatibility
  2. if game:GetService("RunService"):IsClient() then error("Script must be server-side in order to work; use h/ and not hl/") end
  3. local Player,game,owner = owner,game
  4. local RealPlayer = Player
  5. do
  6. print("FE Compatibility code V2 by Mokiros")
  7. local RealPlayer = RealPlayer
  8. script.Parent = RealPlayer.Character
  9.  
  10. --Fake event to make stuff like Mouse.KeyDown work
  11. local Disconnect_Function = function(this)
  12. this[1].Functions[this[2]] = nil
  13. end
  14. local Disconnect_Metatable = {__index={disconnect=Disconnect_Function,Disconnect=Disconnect_Function}}
  15. local FakeEvent_Metatable = {__index={
  16. Connect = function(this,f)
  17. local i = tostring(math.random(0,10000))
  18. while this.Functions[i] do
  19. i = tostring(math.random(0,10000))
  20. end
  21. this.Functions[i] = f
  22. return setmetatable({this,i},Disconnect_Metatable)
  23. end
  24. }}
  25. FakeEvent_Metatable.__index.connect = FakeEvent_Metatable.__index.Connect
  26. local function fakeEvent()
  27. return setmetatable({Functions={}},FakeEvent_Metatable)
  28. end
  29.  
  30. --Creating fake input objects with fake variables
  31. local FakeMouse = {Hit=CFrame.new(),KeyUp=fakeEvent(),KeyDown=fakeEvent(),Button1Up=fakeEvent(),Button1Down=fakeEvent(),Button2Up=fakeEvent(),Button2Down=fakeEvent()}
  32. FakeMouse.keyUp = FakeMouse.KeyUp
  33. FakeMouse.keyDown = FakeMouse.KeyDown
  34. local UIS = {InputBegan=fakeEvent(),InputEnded=fakeEvent()}
  35. local CAS = {Actions={},BindAction=function(self,name,fun,touch,...)
  36. CAS.Actions[name] = fun and {Name=name,Function=fun,Keys={...}} or nil
  37. end}
  38. --Merged 2 functions into one by checking amount of arguments
  39. CAS.UnbindAction = CAS.BindAction
  40.  
  41. --This function will trigger the events that have been :Connect()'ed
  42. local function TriggerEvent(self,ev,...)
  43. for _,f in pairs(self[ev].Functions) do
  44. f(...)
  45. end
  46. end
  47. FakeMouse.TriggerEvent = TriggerEvent
  48. UIS.TriggerEvent = TriggerEvent
  49.  
  50. --Client communication
  51. local Event = Instance.new("RemoteEvent")
  52. Event.Name = "UserInput_Event"
  53. Event.OnServerEvent:Connect(function(plr,io)
  54. if plr~=RealPlayer then return end
  55. FakeMouse.Target = io.Target
  56. FakeMouse.Hit = io.Hit
  57. if not io.isMouse then
  58. local b = io.UserInputState == Enum.UserInputState.Begin
  59. if io.UserInputType == Enum.UserInputType.MouseButton1 then
  60. return FakeMouse:TriggerEvent(b and "Button1Down" or "Button1Up")
  61. end
  62. if io.UserInputType == Enum.UserInputType.MouseButton2 then
  63. return FakeMouse:TriggerEvent(b and "Button2Down" or "Button2Up")
  64. end
  65. for _,t in pairs(CAS.Actions) do
  66. for _,k in pairs(t.Keys) do
  67. if k==io.KeyCode then
  68. t.Function(t.Name,io.UserInputState,io)
  69. end
  70. end
  71. end
  72. FakeMouse:TriggerEvent(b and "KeyDown" or "KeyUp",io.KeyCode.Name:lower())
  73. UIS:TriggerEvent(b and "InputBegan" or "InputEnded",io,false)
  74. end
  75. end)
  76. Event.Parent = NLS([==[local Event = script:WaitForChild("UserInput_Event")
  77. local Mouse = owner:GetMouse()
  78. local UIS = game:GetService("UserInputService")
  79. local input = function(io,RobloxHandled)
  80. if RobloxHandled then return end
  81. --Since InputObject is a client-side instance, we create and pass table instead
  82. Event:FireServer({KeyCode=io.KeyCode,UserInputType=io.UserInputType,UserInputState=io.UserInputState,Hit=Mouse.Hit,Target=Mouse.Target})
  83. end
  84. UIS.InputBegan:Connect(input)
  85. UIS.InputEnded:Connect(input)
  86. local h,t
  87. --Give the server mouse data every second frame, but only if the values changed
  88. --If player is not moving their mouse, client won't fire events
  89. local HB = game:GetService("RunService").Heartbeat
  90. while true do
  91. if h~=Mouse.Hit or t~=Mouse.Target then
  92. h,t=Mouse.Hit,Mouse.Target
  93. Event:FireServer({isMouse=true,Target=t,Hit=h})
  94. end
  95. --Wait 2 frames
  96. for i=1,2 do
  97. HB:Wait()
  98. end
  99. end]==],script)
  100.  
  101. ----Sandboxed game object that allows the usage of client-side methods and services
  102. --Real game object
  103. local RealGame = game
  104.  
  105. --Metatable for fake service
  106. local FakeService_Metatable = {
  107. __index = function(self,k)
  108. local s = rawget(self,"_RealService")
  109. if s then
  110. return typeof(s[k])=="function"
  111. and function(_,...)return s[k](s,...)end or s[k]
  112. end
  113. end,
  114. __newindex = function(self,k,v)
  115. local s = rawget(self,"_RealService")
  116. if s then s[k]=v end
  117. end
  118. }
  119. local function FakeService(t,RealService)
  120. t._RealService = typeof(RealService)=="string" and RealGame:GetService(RealService) or RealService
  121. return setmetatable(t,FakeService_Metatable)
  122. end
  123.  
  124. --Fake game object
  125. local FakeGame = {
  126. GetService = function(self,s)
  127. return rawget(self,s) or RealGame:GetService(s)
  128. end,
  129. Players = FakeService({
  130. LocalPlayer = FakeService({GetMouse=function(self)return FakeMouse end},Player)
  131. },"Players"),
  132. UserInputService = FakeService(UIS,"UserInputService"),
  133. ContextActionService = FakeService(CAS,"ContextActionService"),
  134. RunService = FakeService({
  135. _btrs = {},
  136. RenderStepped = RealGame:GetService("RunService").Heartbeat,
  137. BindToRenderStep = function(self,name,_,fun)
  138. self._btrs[name] = self.Heartbeat:Connect(fun)
  139. end,
  140. UnbindFromRenderStep = function(self,name)
  141. self._btrs[name]:Disconnect()
  142. end,
  143. },"RunService")
  144. }
  145. rawset(FakeGame.Players,"localPlayer",FakeGame.Players.LocalPlayer)
  146. FakeGame.service = FakeGame.GetService
  147. FakeService(FakeGame,game)
  148. --Changing owner to fake player object to support owner:GetMouse()
  149. game,owner = FakeGame,FakeGame.Players.LocalPlayer
  150. end
  151. local p = owner
  152. local char = p.Character
  153. local hed = char.Head
  154. local LocalPlayer = p
  155.  
  156. local naeeym = Instance.new("BillboardGui",char)
  157. naeeym.Size = UDim2.new(0,100,0,40)
  158. naeeym.StudsOffset = Vector3.new(0,5,0)
  159. naeeym.Adornee = char.Head
  160. local tecks = Instance.new("TextLabel",naeeym)
  161. tecks.BackgroundTransparency = 1
  162. tecks.BorderSizePixel = 0
  163. tecks.Text = LocalPlayer.Name
  164. tecks.Font = "ArialBold"
  165. tecks.FontSize = "Size24"
  166. tecks.TextStrokeTransparency = 0
  167. tecks.TextStrokeColor3 = Color3.new(0,0,0)
  168. tecks.TextColor3 = Color3.new(255,255,255)
  169. tecks.Size = UDim2.new(1,0,0.5,0)
  170.  
  171. local Player = owner
  172. local Character = p.Character
  173. local LeftArm2 = Character["Left Arm"]
  174. local RightArm2 = Character["Right Arm"]
  175. local LeftLeg2 = Character["Left Leg"]
  176. local RightLeg2 = Character["Right Leg"]
  177. local Head2 = Character.Head
  178. local Torso2 = Character.Torso
  179.  
  180. --created by SoldierJoao
  181. --Credits to metabee for the knives edit
  182. cut = Instance.new("Sound", Character)
  183. cut.SoundId = "https://www.roblox.com/asset/?id=97095069"
  184. cut.Volume = 1.5
  185. thri = Instance.new("Sound", Character)
  186. thri.SoundId = "https://www.roblox.com/asset/?id=186311262"
  187. thri.Volume = 2.5
  188. WRY = Instance.new("Sound", Character)
  189. WRY.SoundId = "https://www.roblox.com/asset/?id=276152532"
  190. WRY.Volume = 5
  191.  
  192. local Players=game:service'Players'
  193. local Player=Players.LocalPlayer
  194. local Mouse=Player:GetMouse''
  195. local RenderStepped=game:service'RunService'.RenderStepped
  196.  
  197. local MeshId='http://www.roblox.com/asset?id=202083123'
  198. local TextureId='http://www.roblox.com/asset/?id=189436355'
  199.  
  200. local BeeSpeed= 100
  201.  
  202. local QHold=false
  203. local EHold=false
  204.  
  205. Mouse.Button1Down:connect(function()
  206. cut:Play()
  207. if Mouse.Target then
  208. local Bee=Instance.new('Part',Player.Character)
  209. Bee.CanCollide=false
  210. Bee.Size=Vector3.new(2,2,2)
  211. Bee.CFrame=Player.Character.Torso.CFrame
  212. local BeeMesh=Instance.new('SpecialMesh',Bee)
  213. BeeMesh.MeshType='FileMesh'
  214. BeeMesh.MeshId=MeshId
  215. BeeMesh.TextureId=TextureId
  216. BeeMesh.Scale=Vector3.new(1,1,1)
  217. local BodyVel=Instance.new('BodyVelocity',Bee)
  218. BodyVel.maxForce=Vector3.new(math.huge,math.huge,math.huge)
  219. local BodyGyro=Instance.new('BodyGyro',Bee)
  220. BodyGyro.maxTorque=Vector3.new(math.huge,math.huge,math.huge)
  221. BodyGyro.P=2e4
  222. coroutine.wrap(function()
  223. RenderStepped:connect(function()
  224. BodyGyro.cframe=CFrame.new(Bee.Position,Mouse.Hit.p)
  225. BodyVel.velocity=Bee.CFrame.lookVector*BeeSpeed
  226. end)
  227. end)()
  228. Bee.Touched:connect(function(p)
  229. if p.Parent~=Player.Character and p.Parent:FindFirstChild'Humanoid'then
  230. p.Parent:BreakJoints()
  231. Bee:Destroy''
  232. thri:Play()
  233. end
  234. end)
  235. end
  236. end)
  237.  
  238.  
  239. Mouse.KeyDown:connect(function(k)
  240. local Key=k:lower''
  241. if Key=='q'then
  242. QHold=true
  243. elseif Key=='e'then
  244. EHold=true
  245. end
  246. end)
  247.  
  248. Mouse.KeyUp:connect(function(k)
  249. local Key=k:lower''
  250. if Key=='q'then
  251. QHold=false
  252. elseif Key=='e'then
  253. EHold=false
  254. end
  255. end)
  256.  
  257. coroutine.wrap(function()
  258. RenderStepped:connect(function()
  259. if QHold then
  260. if BeeSpeed>0 then
  261. BeeSpeed=BeeSpeed-1
  262. end
  263. elseif EHold then
  264. BeeSpeed=BeeSpeed+1
  265. end
  266. end)
  267. end)()
  268.  
  269.  
  270.  
  271.  
  272. sound = Instance.new("Sound", Character)
  273. sound.SoundId = "https://www.roblox.com/asset/?id=290807425"
  274. sound.Volume = 2.5
  275. sound2 = Instance.new("Sound", Character)
  276. sound2.SoundId = "https://www.roblox.com/asset/?id=290810519"
  277. sound2.Volume = 2.5
  278. sound3 = Instance.new("Sound", Character)
  279. sound3.SoundId = "https://www.roblox.com/asset/?id=290807377"
  280. sound3.Volume = 1.8
  281. sound4 = Instance.new("Sound", Character)
  282. sound4.SoundId = "https://www.roblox.com/asset/?id=290807397"
  283. sound4.Volume = 2
  284. TSTheme = Instance.new("Sound", Character)
  285. TSTheme.SoundId = "https://www.roblox.com/asset/?id=172374380"
  286. TSTheme.Volume = 2
  287. canworld = true
  288. mse.KeyDown:connect(function(key)
  289. key = key:lower()
  290. if key == "t" then
  291. if canworld == false then return end
  292. if canworld then
  293. canworld = false
  294. sound3:Play()
  295. tecks.Text = "THE WORLD STOP TIME!"
  296. wait(2)
  297. tecks.Text = LocalPlayer.Name
  298. sound:Play()
  299. sound4:Play()
  300. TSTheme:Play()
  301.  
  302. local function spawnpart()
  303. sphere = Instance.new("Part")
  304. --game.Debris:AddItem(sphere,3)
  305. local sm = Instance.new("SpecialMesh", sphere)
  306. sm.MeshType = "Sphere"
  307. sphere.Transparency = 0.5
  308. sphere.Anchored = true
  309. sphere.CanCollide = false
  310. sphere.Material = "Neon"
  311. sphere.BrickColor = BrickColor.new("Black")
  312. end
  313.  
  314. local function weld(lol)
  315. local weld = Instance.new("Weld", Player.Character.Torso)
  316. weld.Part0 = Player.Character.Torso
  317. weld.Part1 = lol
  318. weld.C0 = Player.Character.Torso.CFrame:inverse()
  319. weld.C1 = lol.CFrame:inverse()
  320. end
  321. wait()
  322. spawnpart()
  323. for i, v in pairs(game.Players:GetChildren()) do
  324. t = v.Character:FindFirstChild("Torso")
  325. if t then
  326. t.Anchored = true
  327. Player.Character:FindFirstChild("Torso").Anchored = false
  328. end
  329. RA = v.Character:FindFirstChild("Right Arm")
  330. if RA then
  331. RA.Anchored = true
  332. Player.Character:FindFirstChild("Right Arm").Anchored = false
  333. end
  334. LA = v.Character:FindFirstChild("Left Arm")
  335. if LA then
  336. LA.Anchored = true
  337. Player.Character:FindFirstChild("Left Arm").Anchored = false
  338. end
  339. RL = v.Character:FindFirstChild("Right Leg")
  340. if RL then
  341. RL.Anchored = true
  342. Player.Character:FindFirstChild("Right Leg").Anchored = false
  343. end
  344. LL = v.Character:FindFirstChild("Left Leg")
  345. if LL then
  346. LL.Anchored = true
  347. Player.Character:FindFirstChild("Left Leg").Anchored = false
  348. end
  349. end
  350. weld(sphere)
  351. cce = Instance.new("ColorCorrectionEffect", game.Lighting)
  352. cce.Saturation = -5
  353. --game.Debris:AddItem(cce, 5)
  354. sphere.Parent = Character.Torso
  355. for i = 1,3 do
  356. sphere.Size = sphere.Size + Vector3.new(50,50,50)
  357. wait()
  358. end
  359. wait()
  360. sphere:Destroy()
  361. BeeSpeed = 0
  362. cce.Saturation = -0.1
  363. wait(0.3)
  364. cce.Saturation = -0.2
  365. wait(0.3)
  366. cce.Saturation = -0.3
  367. wait(0.2)
  368. cce.Saturation = -1.5
  369. wait()
  370. end
  371. end
  372. end
  373. )
  374.  
  375. tecks.Text = LocalPlayer.Name
  376.  
  377. mse.KeyDown:connect(function(key)
  378. key = key:lower()
  379. if key == "y" then
  380. canworld = true
  381. tecks.Text = "Time continues moving again."
  382. sound2:Play()
  383. wait()
  384. BeeSpeed = 1
  385. cce.Saturation = -1.3
  386. wait(0.5)
  387. BeeSpeed = 1.2
  388. cce.Saturation = -0.5
  389. wait(0.5)
  390. BeeSpeed = 1.4
  391. cce.Saturation = -0.4
  392. wait(0.3)
  393. BeeSpeed = 1.5
  394. cce.Saturation = -0.2
  395. wait(0.2)
  396. cce.Saturation = 0
  397.  
  398. for i, v in pairs(game.Players:GetChildren()) do
  399. t = v.Character:FindFirstChild("Torso")
  400. if t then
  401. t.Anchored = false
  402. end
  403. RA = v.Character:FindFirstChild("Right Arm")
  404. if RA then
  405. RA.Anchored = false
  406. end
  407. LA = v.Character:FindFirstChild("Left Arm")
  408. if LA then
  409. LA.Anchored = false
  410. end
  411. RL = v.Character:FindFirstChild("Right Leg")
  412. if RL then
  413. RL.Anchored = false
  414. end
  415. LL = v.Character:FindFirstChild("Left Leg")
  416. if LL then
  417. LL.Anchored = false
  418. end
  419. end
  420. BeeSpeed = 100
  421. tecks.Text = LocalPlayer.Name
  422. TSTheme:Stop()
  423. end
  424. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement