Advertisement
Lemonysnicket

NetflixHub

Jul 23rd, 2022
24
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 12.36 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local NetflixHub = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local UICorner = Instance.new("UICorner")
  9. local TextLabel = Instance.new("TextLabel")
  10. local UICorner_2 = Instance.new("UICorner")
  11. local TextButton = Instance.new("TextButton")
  12. local UICorner_3 = Instance.new("UICorner")
  13. local TextButton_2 = Instance.new("TextButton")
  14. local UICorner_4 = Instance.new("UICorner")
  15.  
  16. --Properties:
  17.  
  18. NetflixHub.Name = "NetflixHub"
  19. NetflixHub.Parent = game.Workspace
  20. NetflixHub.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. Frame.Parent = NetflixHub
  23. Frame.BackgroundColor3 = Color3.fromRGB(196, 200, 200)
  24. Frame.Position = UDim2.new(0.383775353, 0, 0.239902094, 0)
  25. Frame.Size = UDim2.new(0, 406, 0, 258)
  26.  
  27. UICorner.CornerRadius = UDim.new(0.300000012, 0)
  28. UICorner.Parent = Frame
  29.  
  30. TextLabel.Parent = Frame
  31. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  32. TextLabel.Position = UDim2.new(0.253694594, 0, 0, 0)
  33. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  34. TextLabel.Font = Enum.Font.SourceSans
  35. TextLabel.Text = "NetflixHub"
  36. TextLabel.TextColor3 = Color3.fromRGB(170, 0, 0)
  37. TextLabel.TextSize = 35.000
  38.  
  39. UICorner_2.CornerRadius = UDim.new(0.300000012, 0)
  40. UICorner_2.Parent = TextLabel
  41.  
  42. TextButton.Parent = Frame
  43. TextButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  44. TextButton.Position = UDim2.new(0.068965517, 0, 0.193798438, 0)
  45. TextButton.Size = UDim2.new(0, 105, 0, 50)
  46. TextButton.Font = Enum.Font.SourceSans
  47. TextButton.Text = "Fly(E)"
  48. TextButton.TextColor3 = Color3.fromRGB(170, 0, 0)
  49. TextButton.TextSize = 40.000
  50.  
  51. UICorner_3.CornerRadius = UDim.new(0.300000012, 0)
  52. UICorner_3.Parent = TextButton
  53.  
  54. TextButton_2.Parent = Frame
  55. TextButton_2.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  56. TextButton_2.Position = UDim2.new(0.635467947, 0, 0.193798438, 0)
  57. TextButton_2.Size = UDim2.new(0, 105, 0, 50)
  58. TextButton_2.Font = Enum.Font.SourceSans
  59. TextButton_2.Text = "Fling"
  60. TextButton_2.TextColor3 = Color3.fromRGB(170, 0, 0)
  61. TextButton_2.TextSize = 40.000
  62.  
  63. UICorner_4.CornerRadius = UDim.new(0.300000012, 0)
  64. UICorner_4.Parent = TextButton_2
  65.  
  66. -- Scripts:
  67.  
  68. local function DCLQ_fake_script() -- TextButton.Flying Script
  69. local script = Instance.new('LocalScript', TextButton)
  70.  
  71. --Flying Script--
  72. script.parent.MouseButton1Down:connect(function()
  73. repeat wait()
  74. until game.Players.LocalPlayer and game.Players.LocalPlayer.Character and game.Players.LocalPlayer.Character:findFirstChild("Head") and game.Players.LocalPlayer.Character:findFirstChild("Humanoid")
  75. local mouse = game.Players.LocalPlayer:GetMouse()
  76. repeat wait() until mouse
  77. local plr = game.Players.LocalPlayer
  78. local torso = plr.Character.Head
  79. local flying = true --Making This False Will Not Work In Mobile--
  80. local deb = true
  81. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  82. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  83. local maxspeed = 50
  84. local speed = 0
  85.  
  86. function Fly()
  87. local bg = Instance.new("BodyGyro", torso)
  88. bg.P = 9e4
  89. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  90. bg.cframe = torso.CFrame
  91. local bv = Instance.new("BodyVelocity", torso)
  92. bv.velocity = Vector3.new(0,0.1,0)
  93. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  94. repeat wait()
  95. plr.Character.Humanoid.PlatformStand = true
  96. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  97. speed = speed+.5+(speed/maxspeed)
  98. if speed > maxspeed then
  99. speed = maxspeed
  100. end
  101. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  102. speed = speed-1
  103. if speed < 0 then
  104. speed = 0
  105. end
  106. end
  107. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  108. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  109. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  110. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  111. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  112. else
  113. bv.velocity = Vector3.new(0,0.1,0)
  114. end
  115. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  116. until not flying
  117. ctrl = {f = 0, b = 0, l = 0, r = 0}
  118. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  119. speed = 0
  120. bg:Destroy()
  121. bv:Destroy()
  122. plr.Character.Humanoid.PlatformStand = false
  123. end
  124. mouse.KeyDown:connect(function(key)
  125. if key:lower() == "e" then
  126. if flying then flying = false
  127. else
  128. flying = true
  129. Fly()
  130. end
  131. elseif key:lower() == "w" then
  132. ctrl.f = 1
  133. elseif key:lower() == "s" then
  134. ctrl.b = -1
  135. elseif key:lower() == "a" then
  136. ctrl.l = -1
  137. elseif key:lower() == "d" then
  138. ctrl.r = 1
  139. end
  140. end)
  141. mouse.KeyUp:connect(function(key)
  142. if key:lower() == "w" then
  143. ctrl.f = 0
  144. elseif key:lower() == "s" then
  145. ctrl.b = 0
  146. elseif key:lower() == "a" then
  147. ctrl.l = 0
  148. elseif key:lower() == "d" then
  149. ctrl.r = 0
  150. end
  151. end)
  152. Fly()
  153. end)
  154. end
  155. coroutine.wrap(DCLQ_fake_script)()
  156. local function QLJDZDD_fake_script() -- TextButton_2.Script
  157. local script = Instance.new('Script', TextButton_2)
  158.  
  159. script.parent.MouseButton1Down:connect(function()
  160. local message = Instance.new("Message",workspace)
  161. message.Text = "Loaded press z to execute inviseble , press x to respawn)"
  162. wait(2)
  163. message:Destroy()
  164. end)
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173. local mouse = game.Players.LocalPlayer:GetMouse()
  174.  
  175. local groot = nil
  176.  
  177. mouse.KeyDown:connect(function(k)
  178.  
  179. if k == "z" then
  180.  
  181.  
  182.  
  183. spawn(function()
  184. local message = Instance.new("Message",workspace)
  185. message.Text = "Fe Invisible Fling By Diemiers#4209 Loaded (wait 11 seconds to load)"
  186. wait(11)
  187. message:Destroy()
  188. end)
  189.  
  190.  
  191. local ch = game.Players.LocalPlayer.Character
  192. local prt=Instance.new("Model", workspace)
  193. local z1 = Instance.new("Part", prt)
  194. z1.Name="Torso"
  195. z1.CanCollide = false
  196. z1.Anchored = true
  197. local z2 =Instance.new("Part", prt)
  198. z2.Name="Head"
  199. z2.Anchored = true
  200. z2.CanCollide = false
  201. local z3 =Instance.new("Humanoid", prt)
  202. z3.Name="Humanoid"
  203. z1.Position = Vector3.new(0,9999,0)
  204. z2.Position = Vector3.new(0,9991,0)
  205. game.Players.LocalPlayer.Character=prt
  206. wait(5)
  207. game.Players.LocalPlayer.Character=ch
  208. wait(6)
  209.  
  210.  
  211. local plr = game.Players.LocalPlayer
  212. mouse = plr:GetMouse()
  213.  
  214. local Hum = Instance.new("Humanoid")
  215. Hum.Parent = game.Players.LocalPlayer.Character
  216.  
  217.  
  218. local root = game.Players.LocalPlayer.Character.HumanoidRootPart
  219.  
  220.  
  221. for i,v in pairs(plr.Character:GetChildren()) do
  222.  
  223. if v ~= root and v.Name ~= "Humanoid" then
  224.  
  225. v:Destroy()
  226.  
  227. end
  228.  
  229.  
  230. end
  231.  
  232. workspace.CurrentCamera.CameraSubject = root
  233.  
  234. local se = Instance.new("SelectionBox",root)
  235. se.Adornee = root
  236.  
  237.  
  238. game:GetService('RunService').Stepped:connect(function()
  239. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  240. end)
  241. game:GetService('RunService').RenderStepped:connect(function()
  242. game.Players.LocalPlayer.Character.HumanoidRootPart.CanCollide = false
  243. end)
  244.  
  245.  
  246. power = 999999 -- change this to make it more or less powerful
  247.  
  248. power = power*10
  249.  
  250. ---
  251. wait(.1)
  252. local bambam = Instance.new("BodyThrust")
  253. bambam.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  254. bambam.Force = Vector3.new(power,0,power)
  255. bambam.Location = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
  256.  
  257.  
  258.  
  259.  
  260.  
  261. local plr = game.Players.LocalPlayer
  262. local torso = root
  263. local flying = true
  264. local deb = true
  265. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  266. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  267. local maxspeed = 120
  268. local speed = 15
  269.  
  270.  
  271. ---local bambam = Instance.new("BodyThrust")
  272. ---bambam.Parent = torso
  273. --bambam.Force = Vector3.new(9999999,0,9999999)
  274. --bambam.Location = torso.Position
  275.  
  276.  
  277. ---
  278. groot = root
  279.  
  280. function Fly()
  281. local bg = Instance.new("BodyGyro", torso)
  282. bg.P = 9e4
  283. bg.maxTorque = Vector3.new(0, 0, 0)
  284. bg.cframe = torso.CFrame
  285. local bv = Instance.new("BodyVelocity", torso)
  286. bv.velocity = Vector3.new(0,0,0)
  287. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  288. repeat wait()
  289.  
  290. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  291. speed = speed+.2
  292. if speed > maxspeed then
  293. speed = maxspeed
  294. end
  295. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  296. speed = speed-1
  297. if speed < 0 then
  298. speed = 0
  299. end
  300. end
  301. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  302. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (ctrl.f+ctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(ctrl.l+ctrl.r,(ctrl.f+ctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  303. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  304. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  305. bv.velocity = ((game.Workspace.CurrentCamera.CoordinateFrame.lookVector * (lastctrl.f+lastctrl.b)) + ((game.Workspace.CurrentCamera.CoordinateFrame * CFrame.new(lastctrl.l+lastctrl.r,(lastctrl.f+lastctrl.b)*.2,0).p) - game.Workspace.CurrentCamera.CoordinateFrame.p))*speed
  306. else
  307. bv.velocity = Vector3.new(0,0.1,0)
  308. end
  309.  
  310. until not flying
  311. ctrl = {f = 0, b = 0, l = 0, r = 0}
  312. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  313. speed = 0
  314. bg:Destroy()
  315. bv:Destroy()
  316.  
  317. end
  318. mouse.KeyDown:connect(function(key)
  319. if key:lower() == "e" then
  320. if flying then flying = false
  321. else
  322. flying = true
  323. Fly()
  324. end
  325. elseif key:lower() == "w" then
  326. ctrl.f = 1
  327. elseif key:lower() == "s" then
  328. ctrl.b = -1
  329. elseif key:lower() == "a" then
  330. ctrl.l = -1
  331. elseif key:lower() == "d" then
  332. ctrl.r = 1
  333. end
  334. end)
  335. mouse.KeyUp:connect(function(key)
  336. if key:lower() == "w" then
  337. ctrl.f = 0
  338. elseif key:lower() == "s" then
  339. ctrl.b = 0
  340. elseif key:lower() == "a" then
  341. ctrl.l = 0
  342. elseif key:lower() == "d" then
  343. ctrl.r = 0
  344. elseif key:lower() == "r" then
  345.  
  346. end
  347. end)
  348. Fly()
  349.  
  350.  
  351.  
  352. elseif k == "x" then
  353.  
  354.  
  355. spawn(function()
  356. local message = Instance.new("Message",workspace)
  357. message.Text = "Respawning dont spam"
  358. wait(1)
  359. message:Destroy()
  360. end)
  361.  
  362. local saved = groot.Position
  363.  
  364. local ch = game.Players.LocalPlayer.Character
  365. local prt=Instance.new("Model", workspace)
  366. local z1 = Instance.new("Part", prt)
  367. z1.Name="Torso"
  368. z1.CanCollide = false
  369. z1.Anchored = true
  370. local z2 =Instance.new("Part", prt)
  371. z2.Name="Head"
  372. z2.Anchored = true
  373. z2.CanCollide = false
  374. local z3 =Instance.new("Humanoid", prt)
  375. z3.Name="Humanoid"
  376. z1.Position = Vector3.new(0,9999,0)
  377. z2.Position = Vector3.new(0,9991,0)
  378. game.Players.LocalPlayer.Character=prt
  379. wait(5)
  380. game.Players.LocalPlayer.Character=ch
  381. local poop = nil
  382. repeat wait() poop = game.Players.LocalPlayer.Character:FindFirstChild("Head") until poop ~= nil
  383. wait(1)
  384. game:GetService("Players").LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(saved)
  385.  
  386. end
  387.  
  388.  
  389. end)
  390.  
  391. end
  392. coroutine.wrap(QLJDZDD_fake_script)()
  393. local function FMGK_fake_script() -- NetflixHub.Keybind Script
  394. local script = Instance.new('LocalScript', NetflixHub)
  395.  
  396. local frame = script.Parent.Frame -- Make this you frame Name!
  397. local hotkey = Enum.KeyCode.V -- Make this whatever you want your keybind to be!
  398.  
  399. local UIS = game:GetService("UserInputService")
  400. local open = false
  401.  
  402.  
  403.  
  404. UIS.InputBegan:Connect(function(key, gp)
  405. if key.KeyCode == hotkey then
  406. if UIS:GetFocusedTextBox() == nil then
  407. if open == false then
  408. open = true
  409. frame.Visible = open
  410. elseif open == true then
  411. open = false
  412. frame.Visible = open
  413. end
  414. end
  415. end
  416. end)
  417.  
  418. end
  419. coroutine.wrap(FMGK_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement