Advertisement
THEDEVEL2220

UPDATED

Sep 11th, 2022
27
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 24.74 KB | None | 0 0
  1. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  2. local Window = OrionLib:MakeWindow({Name = "Devels AutoFarm", HidePremium = false, SaveConfig = true, ConfigFolder = "OrionTest"})
  3.  
  4.  
  5. --[[
  6. Name = <string> - The name of the UI.
  7. HidePremium = <bool> - Whether or not the user details shows Premium status or not.
  8. SaveConfig = <bool> - Toggles the config saving in the UI.
  9. ConfigFolder = <string> - The name of the folder where the configs are saved.
  10. IntroEnabled = <bool> - Whether or not to show the intro animation.
  11. IntroText = <string> - Text to show in the intro animation.
  12. IntroIcon = <string> - URL to the image you want to use in the intro animation.
  13. Icon = <string> - URL to the image you want displayed on the window.
  14. CloseCallback = <function> - Function to execute when the window is closed.
  15. ]]
  16. local Tab = Window:MakeTab({
  17. Name = "Farming",
  18. Icon = "rbxassetid://4483345998",
  19. PremiumOnly = false
  20. })
  21.  
  22. --[[
  23. Name = <string> - The name of the tab.
  24. Icon = <string> - The icon of the tab.
  25. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  26. ]]
  27. local Section = Tab:AddSection({
  28. Name = "Section"
  29. })
  30.  
  31. --[[
  32. Name = <string> - The name of the section.
  33. ]]
  34. OrionLib:MakeNotification({
  35. Name = "Welcome",
  36. Content = "Script Loaded",
  37. Image = "rbxassetid://4483345998",
  38. Time = 5
  39. })
  40.  
  41. --[[
  42. Title = <string> - The title of the notification.
  43. Content = <string> - The content of the notification.
  44. Image = <string> - The icon of the notification.
  45. Time = <number> - The duration of the notfication.
  46. ]]
  47. Tab:AddButton({
  48. Name = "STRENGTH",
  49. Callback = function() _G.kick = true while _G.kick do wait() if _G.kick == false then return end if _G.kick == true then game:GetService("ReplicatedStorage").Remotes.DoubleReg:FireServer() end end
  50. print("button pressed")
  51. end
  52. })
  53.  
  54. --[[
  55. Name = <string> - The name of the button.
  56. Callback = <function> - The function of the button.
  57. ]]
  58.  
  59.  
  60. --[[
  61. Name = <string> - The name of the toggle.
  62. Default = <bool> - The default value of the toggle.
  63. Callback = <> - The function of the toggle.
  64. ]]
  65. local Tab = Window:MakeTab({
  66. Name = "PVP",
  67. Icon = "rbxassetid://4483345998",
  68. PremiumOnly = false
  69. })
  70.  
  71. --[[
  72. Name = <string> - The name of the tab.
  73. Icon = <string> - The icon of the tab.
  74. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  75. ]]
  76. local Section = Tab:AddSection({
  77. Name = "Section"
  78. })
  79.  
  80. Tab:AddButton({
  81. Name = "INFINITE YIELD!",
  82. Callback = function()loadstring(game:HttpGet('https://raw.githubusercontent.com/EdgeIY/infiniteyield/master/source'))()
  83. print("button pressed")
  84. end
  85. })
  86. local Tab = Window:MakeTab({
  87. Name = "FARMING2",
  88. Icon = "rbxassetid://4483345998",
  89. PremiumOnly = false
  90. })
  91.  
  92. --[[
  93. Name = <string> - The name of the tab.
  94. Icon = <string> - The icon of the tab.
  95. PremiumOnly = <bool> - Makes the tab accessible to Sirus Premium users only.
  96. ]]
  97. local Section = Tab:AddSection({
  98. Name = "Section"
  99. })
  100.  
  101. Tab:AddButton({
  102. Name = "HP!",
  103. Callback = function() _G.riotheW = true
  104. while wait() do
  105. if _G.riotheW == false then
  106. return
  107. end
  108. if _G.riotheW == true then
  109. game:GetService("ReplicatedStorage").Remotes.Bench:FireServer(3)
  110. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer(3)
  111. game:GetService("ReplicatedStorage").Remotes.Bench:FireServer(3)
  112. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer(3)
  113. game:GetService("ReplicatedStorage").Remotes.Bench:FireServer(3)
  114. end
  115. end
  116. print("button pressed")
  117. end
  118. })
  119. Tab:AddButton({
  120. Name = "AUTO PUSHUP!",
  121. Callback = function() while wait() do
  122. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer()
  123. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer()
  124. game:GetService("ReplicatedStorage").Remotes.PushUp:FireServer()
  125. end
  126. end})
  127.  
  128. local Tab = Window:MakeTab({
  129. Name = "STAT CHECKER",
  130. Icon = "rbxassetid://4483345998",
  131. PremiumOnly = false
  132. })
  133. Tab:AddButton({
  134. Name = "Tea Hub!",
  135. Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Aurelius0863/TeaHub/main/Loader.lua"))()
  136.  
  137. end})
  138. local Tab = Window:MakeTab({
  139. Name = "FUN",
  140. Icon = "rbxassetid://4483345998",
  141. PremiumOnly = false
  142.  
  143. })
  144. Tab:AddButton({
  145. Name = "Fling Script",
  146. Callback = function() loadstring(game:HttpGet('https://pastebin.com/raw/fj5VwQtC'))()
  147. end})
  148.  
  149. --[[
  150. Sources:
  151. UIS = https://developer.roblox.com/en-us/api-reference/class/UserInputService
  152. Humanoid = https://developer.roblox.com/en-us/api-reference/class/Humanoid
  153. isRunning = https://developer.roblox.com/en-us/articles/Boolean
  154. isTrueSpeed / isFalseSpeed = https://developer.roblox.com/en-us/articles/Variables
  155. defaultKey = https://developer.roblox.com/en-us/api-reference/enum/KeyCode
  156. --]]
  157. print(Value)
  158.  
  159.  
  160. --[[
  161. Name = <string> - The name of the slider.
  162. Min = <number> - The minimal value of the slider.
  163. Max = <number> - The maxium value of the slider.
  164. Increment = <number> - How much the slider will change value when dragging.
  165. Default = <number> - The default value of the slider.
  166. ValueName = <string> - The text after the value number.
  167. Callback = <function> - The function of the slider.
  168. ]]
  169.  
  170. local Tab = Window:MakeTab({
  171. Name = "Extras",
  172. Icon = "rbxassetid://4483345998",
  173. PremiumOnly = false
  174. })
  175. Tab:AddButton({
  176. Name = "Straw Hub",
  177. Callback = function() loadstring(game:HttpGet("https://raw.githubusercontent.com/vep1032/VepStuff/main/COBRA%20KAI%20KARATE%20%7C%20OPEN%20SOURCE%20GUI"))()
  178.  
  179.  
  180. end})
  181. Tab:AddSlider({
  182. Name = "Speed",
  183. Min =16,
  184. Max =250,
  185. Default = 5,
  186. Color = Color3.fromRGB(255,255,255),
  187. Increment = 1,
  188. ValueName = "Walkspeed",
  189. Callback = function(Value) game.Players.LocalPlayer.character.Humanoid.WalkSpeed = Value
  190.  
  191.  
  192. print(Value)
  193. end
  194. })
  195.  
  196. --[[
  197. Name = <string> - The name of the slider.
  198. Min = <number> - The minimal value of the slider.
  199. Max = <number> - The maxium value of the slider.
  200. Increment = <number> - How much the slider will change value when dragging.
  201. Default = <number> - The default value of the slider.w
  202. ValueName = <string> - The text after the value number.
  203. Callback = <function> - The function of the slider.
  204. ]]
  205. Tab:AddSlider({
  206. Name = "JumpPower",
  207. Min =16,
  208. Max =250,
  209. Default = 45,
  210. Color = Color3.fromRGB(255,255,255),
  211. Increment = 1,
  212. ValueName = "JumpPower",
  213. Callback = function(Value) game.Players.LocalPlayer.character.Humanoid.JumpPower = Value
  214.  
  215. end})
  216. Tab:AddButton({
  217. Name = "Fly",
  218. Min =16,
  219. Max =250,
  220. Default = 45,
  221. Color = Color3.fromRGB(255,255,255),
  222. Increment = 1,
  223. ValueName = "Flyspeed",
  224. Callback = function(Value) -- Bring to you by 7alexv7
  225. -- Enjoy the script!
  226.  
  227. -- Instances:
  228.  
  229. local FlyGui = Instance.new("ScreenGui")
  230. local Frame = Instance.new("Frame")
  231. local TextButton = Instance.new("TextButton")
  232. local TextLabel = Instance.new("TextLabel")
  233.  
  234. --Properties:
  235.  
  236. FlyGui.Name = "FlyGui"
  237. FlyGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  238.  
  239. Frame.Parent = FlyGui
  240. Frame.BackgroundColor3 = Color3.fromRGB(80, 80, 80)
  241. Frame.BorderSizePixel = 0
  242. Frame.Position = UDim2.new(0.0685602352, 0, 0.168769717, 0)
  243. Frame.Size = UDim2.new(0.264544547, 0, 0.100000024, 0)
  244.  
  245. TextButton.Parent = Frame
  246. TextButton.BackgroundColor3 = Color3.fromRGB(66, 66, 66)
  247. TextButton.BorderSizePixel = 0
  248. TextButton.Position = UDim2.new(0.06324628, 0, 0.400667697, 0)
  249. TextButton.Size = UDim2.new(0.871157169, 0, 0.495614201, 0)
  250. TextButton.Font = Enum.Font.ArialBold
  251. TextButton.Text = "Fly"
  252. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  253. TextButton.TextScaled = true
  254. TextButton.TextSize = 14.000
  255. TextButton.TextStrokeTransparency = 0.000
  256. TextButton.TextWrapped = true
  257.  
  258. TextLabel.Parent = Frame
  259. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  260. TextLabel.Size = UDim2.new(0, 86, 0, 24)
  261. TextLabel.Font = Enum.Font.Oswald
  262. TextLabel.Text = "Made by GcoSad_X"
  263. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  264. TextLabel.TextScaled = true
  265. TextLabel.TextSize = 14.000
  266. TextLabel.TextWrapped = true
  267.  
  268. -- Scripts:
  269.  
  270. local function NQWSTGE_fake_script() -- Frame.Fly
  271. local script = Instance.new('LocalScript', Frame)
  272.  
  273. local plr = script.Parent.Parent.Parent.Parent
  274. repeat wait() until plr and plr.Character and plr.Character:findFirstChild("HumanoidRootPart") and plr.Character:findFirstChild("Humanoid")
  275. local mouse = game.Players.LocalPlayer:GetMouse()
  276. repeat wait() until mouse
  277.  
  278. local torso = plr.Character.HumanoidRootPart
  279. local flying = false
  280. local deb = true
  281. local ctrl = {f = 0, b = 0, l = 0, r = 0}
  282. local lastctrl = {f = 0, b = 0, l = 0, r = 0}
  283. local maxspeed = 1000
  284. local speed = 70
  285. function Fly()
  286. local bg = Instance.new("BodyGyro", torso)
  287. bg.P = 9e4
  288. bg.maxTorque = Vector3.new(9e9, 9e9, 9e9)
  289. bg.cframe = torso.CFrame
  290. local bv = Instance.new("BodyVelocity", torso)
  291. bv.velocity = Vector3.new(0,0.1,0)
  292. bv.maxForce = Vector3.new(9e9, 9e9, 9e9)
  293. repeat wait()
  294. plr.Character.Humanoid.PlatformStand = true
  295. if ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0 then
  296. speed = speed+.5+(speed/maxspeed)
  297. if speed > maxspeed then
  298. speed = maxspeed
  299. end
  300. elseif not (ctrl.l + ctrl.r ~= 0 or ctrl.f + ctrl.b ~= 0) and speed ~= 0 then
  301. speed = speed-1
  302. if speed < 0 then
  303. speed = 0
  304. else
  305. speed = 70
  306. end
  307. end
  308. if (ctrl.l + ctrl.r) ~= 0 or (ctrl.f + ctrl.b) ~= 0 then
  309. 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
  310. lastctrl = {f = ctrl.f, b = ctrl.b, l = ctrl.l, r = ctrl.r}
  311. elseif (ctrl.l + ctrl.r) == 0 and (ctrl.f + ctrl.b) == 0 and speed ~= 0 then
  312. 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
  313. else
  314. bv.velocity = Vector3.new(0,0.1,0)
  315. end
  316. bg.cframe = game.Workspace.CurrentCamera.CoordinateFrame * CFrame.Angles(-math.rad((ctrl.f+ctrl.b)*50*speed/maxspeed),0,0)
  317. until not flying
  318. ctrl = {f = 0, b = 0, l = 0, r = 0}
  319. lastctrl = {f = 0, b = 0, l = 0, r = 0}
  320.  
  321. bg:Destroy()
  322. bv:Destroy()
  323. plr.Character.Humanoid.PlatformStand = false
  324. speed = 70
  325. end
  326.  
  327. mouse.KeyDown:connect(function(key)
  328. if key:lower() == "e" then
  329. if flying then flying = false
  330. speed = 70
  331. else
  332. flying = true
  333. Fly()
  334.  
  335. end
  336. elseif key:lower() == "w" then
  337. ctrl.f = 1
  338. elseif key:lower() == "s" then
  339. ctrl.b = -1
  340. elseif key:lower() == "a" then
  341. ctrl.l = -1
  342. elseif key:lower() == "d" then
  343. ctrl.r = 1
  344. end
  345. end)
  346. mouse.KeyUp:connect(function(key)
  347. if key:lower() == "w" then
  348. ctrl.f = 0
  349. elseif key:lower() == "s" then
  350. ctrl.b = 0
  351. elseif key:lower() == "a" then
  352. ctrl.l = 0
  353. elseif key:lower() == "d" then
  354. ctrl.r = 0
  355. end
  356. end)
  357.  
  358. local main = Instance.new("ScreenGui")
  359. local epic = Instance.new("Frame")
  360. local backgroundtitle = Instance.new("TextLabel")
  361. local creator = Instance.new("TextLabel")
  362. local title = Instance.new("TextLabel")
  363. local close = Instance.new("TextButton")
  364. local fbutton = Instance.new("TextButton")
  365. local ebutton = Instance.new("TextButton")
  366. local qbutton = Instance.new("TextButton")
  367. local tbutton = Instance.new("TextButton")
  368. local main2 = Instance.new("ScreenGui")
  369. local epic2 = Instance.new("Frame")
  370. local backgroundtitle2 = Instance.new("TextLabel")
  371. local creator2 = Instance.new("TextLabel")
  372. local title2 = Instance.new("TextLabel")
  373. local close2 = Instance.new("TextButton")
  374. local fbutton2 = Instance.new("TextButton")
  375. local ebutton2 = Instance.new("TextButton")
  376. local qbutton2 = Instance.new("TextButton")
  377. local tbutton2 = Instance.new("TextButton")
  378.  
  379. main.Name = "main"
  380. main.Parent = game.CoreGui
  381. main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  382.  
  383. epic.Name = "epic"
  384. epic.Parent = main
  385. epic.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  386. epic.Position = UDim2.new(0.0911376476, 0, 0.466830462, 0)
  387. epic.Size = UDim2.new(0, 150, 0, 150)
  388. epic.Active = true
  389. epic.Draggable = true
  390.  
  391. creator.Name = "creator"
  392. creator.Parent = epic
  393. creator.BackgroundColor3 = Color3.fromRGB(1, 1, 1)
  394. creator.Position = UDim2.new(0.00442049652, 0, 0.762519121, 0)
  395. creator.Size = UDim2.new(0, 80, 0, 10)
  396. creator.Font = Enum.Font.SourceSans
  397. creator.Text = ""
  398. creator.TextColor3 = Color3.fromRGB(0, 0, 0)
  399. creator.TextScaled = true
  400. creator.TextSize = 14.000
  401. creator.TextWrapped = false
  402.  
  403. title.Name = "title"
  404. title.Parent = epic
  405. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  406. title.BackgroundTransparency = 1.000
  407. title.Position = UDim2.new(0.0497237556, 0, 0, 0)
  408. title.Size = UDim2.new(0, 80, 0, 10)
  409. title.Font = Enum.Font.SciFi
  410. title.Text = ""
  411. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  412. title.TextScaled = true
  413. title.TextSize = 14.000
  414. title.TextWrapped = true
  415.  
  416. close.Name = "close"
  417. close.Parent = epic
  418. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  419. close.Position = UDim2.new(0.76795578, 0, 0, 0)
  420. close.Size = UDim2.new(0, 35, 0, 35)
  421. close.Font = Enum.Font.GothamBlack
  422. close.Text = "X"
  423. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  424. close.TextScaled = true
  425. close.TextSize = 14.000
  426. close.TextWrapped = true
  427. close.MouseButton1Down:connect(function()
  428. epic.Visible = false
  429. end)
  430.  
  431. fbutton.Name = "tbutton"
  432. fbutton.Parent = epic
  433. fbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  434. fbutton.Position = UDim2.new(0.3, 0, 0.4, 0)
  435. fbutton.Size = UDim2.new(0, 38, 0, 38)
  436. fbutton.Font = Enum.Font.SourceSans
  437. fbutton.Text = "S"
  438. fbutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  439. fbutton.TextSize = 14.000
  440. fbutton.MouseButton1Down:connect(function()
  441. ctrl.b = -1
  442. wait(0.1)
  443. ctrl.b = 0
  444. ctrl.r = 0
  445. ctrl.l = 0
  446. ctrl.f = 0
  447. end)
  448.  
  449. ebutton.Name = "fbutton"
  450. ebutton.Parent = epic
  451. ebutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  452. ebutton.Position = UDim2.new(0.6, 0, 0.4, 0)
  453. ebutton.Size = UDim2.new(0, 38, 0, 38)
  454. ebutton.Font = Enum.Font.SourceSans
  455. ebutton.Text = "D"
  456. ebutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  457. ebutton.TextSize = 14.000
  458. ebutton.MouseButton1Down:connect(function()
  459. ctrl.r = 1
  460. wait(0.1)
  461. ctrl.b = 0
  462. ctrl.r = 0
  463. ctrl.l = 0
  464. ctrl.f = 0
  465. end)
  466.  
  467. qbutton.Name = "rbutton"
  468. qbutton.Parent = epic
  469. qbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  470. qbutton.Position = UDim2.new(0.3, 0, 0.1, 0)
  471. qbutton.Size = UDim2.new(0, 38, 0, 38)
  472. qbutton.Font = Enum.Font.SourceSans
  473. qbutton.Text = "W"
  474. qbutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  475. qbutton.TextSize = 14.000
  476. qbutton.MouseButton1Down:connect(function()
  477. ctrl.f = 1
  478. wait(0.1)
  479. ctrl.b = 0
  480. ctrl.r = 0
  481. ctrl.l = 0
  482. ctrl.f = 0
  483. end)
  484.  
  485. tbutton.Name = "ebutton"
  486.  
  487. tbutton.Parent = epic
  488.  
  489. tbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  490. tbutton.Position = UDim2.new(0, 0, 0.4, 0)
  491. tbutton.Size = UDim2.new(0, 38, 0, 38)
  492. tbutton.Font = Enum.Font.SourceSans
  493. tbutton.Text = "A"
  494. tbutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  495. tbutton.TextSize = 14.000
  496. tbutton.MouseButton1Down:connect(function()
  497. ctrl.l = -1
  498. wait(0.1)
  499. ctrl.b = 0
  500. ctrl.r = 0
  501. ctrl.l = 0
  502. ctrl.f = 0
  503. end)
  504.  
  505. local main = Instance.new("ScreenGui")
  506. local epic = Instance.new("Frame")
  507. local backgroundtitle = Instance.new("TextLabel")
  508. local creator = Instance.new("TextLabel")
  509. local title = Instance.new("TextLabel")
  510. local close = Instance.new("TextButton")
  511. local fbutton = Instance.new("TextButton")
  512. local main2 = Instance.new("ScreenGui")
  513. local epic2 = Instance.new("Frame")
  514. local backgroundtitle2 = Instance.new("TextLabel")
  515. local creator2 = Instance.new("TextLabel")
  516. local title2 = Instance.new("TextLabel")
  517. local close2 = Instance.new("TextButton")
  518. local fbutton2 = Instance.new("TextButton")
  519.  
  520. main.Name = "main"
  521. main.Parent = game.CoreGui
  522. main.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  523.  
  524. epic.Name = "epic"
  525. epic.Parent = main
  526. epic.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  527. epic.Position = UDim2.new(0.0911376476, 0, 0.466830462, 0)
  528. epic.Size = UDim2.new(0, 80, 0, 120)
  529. epic.Active = true
  530. epic.Draggable = true
  531.  
  532. creator.Name = "creator"
  533. creator.Parent = epic
  534. creator.BackgroundColor3 = Color3.fromRGB(1, 1, 1)
  535. creator.Position = UDim2.new(0.00442049652, 0, 0.762519121, 0)
  536. creator.Size = UDim2.new(0, 80, 0, 10)
  537. creator.Font = Enum.Font.SourceSans
  538. creator.Text = ""
  539. creator.TextColor3 = Color3.fromRGB(0, 0, 0)
  540. creator.TextScaled = true
  541. creator.TextSize = 14.000
  542. creator.TextWrapped = false
  543.  
  544. title.Name = "title"
  545. title.Parent = epic
  546. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  547. title.BackgroundTransparency = 1.000
  548. title.Position = UDim2.new(0.0497237556, 0, 0, 0)
  549. title.Size = UDim2.new(0, 80, 0, 10)
  550. title.Font = Enum.Font.SciFi
  551. title.Text = ""
  552. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  553. title.TextScaled = true
  554. title.TextSize = 14.000
  555. title.TextWrapped = true
  556.  
  557. close.Name = "close"
  558. close.Parent = epic
  559. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  560. close.Position = UDim2.new(0.76795578, 0, 0, 0)
  561. close.Size = UDim2.new(0, 20, 0, 20)
  562. close.Font = Enum.Font.GothamBlack
  563. close.Text = "X"
  564. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  565. close.TextScaled = true
  566. close.TextSize = 14.000
  567. close.TextWrapped = true
  568. close.MouseButton1Down:connect(function()
  569. epic.Visible = false
  570. end)
  571.  
  572. fbutton.Name = "tbutton"
  573. fbutton.Parent = epic
  574. fbutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  575. fbutton.Position = UDim2.new(0.243093923, 0, 0.344781578, 0)
  576. fbutton.Size = UDim2.new(0, 38, 0, 38)
  577. fbutton.Font = Enum.Font.SourceSans
  578. fbutton.Text = "Stop"
  579. fbutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  580. fbutton.TextSize = 14.000
  581. fbutton.MouseButton1Down:connect(function()
  582. flying = false
  583. wait(0.1)
  584. flying = true
  585. Fly()
  586. end)
  587.  
  588.  
  589.  
  590. plr.Character.Humanoid.StateChanged:Connect(function(o,n)
  591. if n == Enum.HumanoidStateType.Running then
  592. ctrl.f = 1
  593. else
  594. ctrl.f = 0
  595. end
  596.  
  597. end)
  598. script.Parent.TextButton.MouseButton1Click:Connect(function()
  599. if flying then
  600. flying = false
  601. speed = 70
  602. else
  603. flying = true
  604. Fly()
  605. end
  606. end)
  607.  
  608. end
  609. coroutine.wrap(NQWSTGE_fake_script)()
  610. local function RAQA_fake_script() -- Frame.Buttons
  611. local script = Instance.new('LocalScript', Frame)
  612.  
  613. local Trigger = script.Parent.MiniTrext
  614. local IsMini = false
  615. function CreateTween(Instance,Style,Direction,Time,table,RepeatCount,CanRepeat,Delay)
  616. local ts = game:GetService("TweenService")
  617. local TweenInfo = TweenInfo.new(Time,Style,Direction,RepeatCount,CanRepeat,Delay)
  618. local Tween = ts:Create(Instance,TweenInfo,table)
  619. repeat wait() until Tween ~= nil
  620. return Tween
  621.  
  622. end
  623. Trigger.MouseButton1Click:Connect(function()
  624. if IsMini then
  625. CreateTween(script.Parent,Enum.EasingStyle.Quad,Enum.EasingDirection.Out,0.5,{Size = UDim2.new(0.265, 0,0.1, 0)},0,false,0.1):Play()
  626. IsMini = false
  627. Trigger.Text = "-"
  628. else
  629. CreateTween(script.Parent,Enum.EasingStyle.Quad,Enum.EasingDirection.Out,0.5,{Size = UDim2.new(0.265, 0,0.042, 0)},0,false,0.1):Play()
  630. IsMini = true
  631. Trigger.Text = "+"
  632. end
  633. end)
  634. script.Parent.Delete.MouseButton1Click:Connect(function()
  635. script.Parent.Parent:Destroy()
  636. end)
  637. end
  638. coroutine.wrap(RAQA_fake_script)()
  639. local function TKVUMP_fake_script() -- Frame.Drag Gui
  640. local script = Instance.new('LocalScript', Frame)
  641.  
  642. local UserInputService = game:GetService("UserInputService")
  643.  
  644. local gui = script.Parent
  645.  
  646. local dragging
  647. local dragInput
  648. local dragStart
  649. local startPos
  650.  
  651. local function update(input)
  652. local delta = input.Position - dragStart
  653. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  654. end
  655.  
  656. gui.InputBegan:Connect(function(input)
  657. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  658. dragging = true
  659. dragStart = input.Position
  660. startPos = gui.Position
  661.  
  662. input.Changed:Connect(function()
  663. if input.UserInputState == Enum.UserInputState.End then
  664. dragging = false
  665. end
  666. end)
  667. end
  668. end)
  669.  
  670. gui.InputChanged:Connect(function(input)
  671. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  672. dragInput = input
  673. end
  674. end)
  675.  
  676. UserInputService.InputChanged:Connect(function(input)
  677. if input == dragInput and dragging then
  678. update(input)
  679. end
  680. end)
  681. end
  682. coroutine.wrap(TKVUMP_fake_script)()
  683.  
  684. end})
  685. Tab:AddButton({
  686. Name = "Noclip",
  687. Min =16,
  688. Max =250,
  689. Default = 45,
  690. Color = Color3.fromRGB(255,255,255),
  691. Increment = 1,
  692. ValueName = "Noclip",
  693. Callback = function(Value) -- Farewell Infortality.
  694. -- Version: 2.82
  695. -- Instances:
  696. local ScreenGui = Instance.new("ScreenGui")
  697. local Frame = Instance.new("Frame")
  698. local Drag = Instance.new("TextButton")
  699. local TextButton = Instance.new("TextButton")
  700. local TextButton_2 = Instance.new("TextButton")
  701. local TextLabel = Instance.new("TextLabel")
  702. --Properties:
  703. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  704. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  705.  
  706. Frame.Parent = ScreenGui
  707. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  708. Frame.Position = UDim2.new(0.275453836, 0, 0.186732173, 0)
  709. Frame.Size = UDim2.new(0, 379, 0, 373)
  710.  
  711. Drag.Name = "Drag"
  712. Drag.Parent = Frame
  713. Drag.BackgroundColor3 = Color3.new(1, 1, 1)
  714. Drag.BorderColor3 = Color3.new(0.917647, 0.917647, 0.917647)
  715. Drag.Size = UDim2.new(0, 379, 0, 27)
  716. Drag.Text = "Drag"
  717. Drag.TextColor3 = Color3.new(0, 0, 0)
  718.  
  719. TextButton.Parent = Frame
  720. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  721. TextButton.Position = UDim2.new(0.261265785, 0, 0.352023244, 0)
  722. TextButton.Size = UDim2.new(0, 200, 0, 50)
  723. TextButton.Font = Enum.Font.SourceSans
  724. TextButton.Text = "Noclip R15"
  725. TextButton.TextColor3 = Color3.new(0, 0, 0)
  726. TextButton.TextSize = 14
  727. TextButton.MouseButton1Down:connect(function()
  728. nam = game.Players.LocalPlayer.Name
  729.  
  730. game:GetService('RunService').Stepped:connect(function()
  731. for a, b in pairs(game.Workspace:GetChildren()) do
  732. if b.Name == nam then
  733. for i, v in pairs(game.Workspace[nam]:GetChildren()) do
  734. if v:IsA("BasePart") then
  735. v.CanCollide = false
  736.  
  737. end
  738. end
  739. end
  740. end
  741. end)
  742.  
  743. Workspace[nam].Head.Changed:connect(function()
  744. for a, b in pairs(game.Workspace:GetChildren()) do
  745. if b.Name == nam then
  746. for i, v in pairs(game.Workspace[nam]:GetChildren()) do
  747. if v:IsA("BasePart") then
  748. v.CanCollide = false
  749.  
  750. end
  751. end
  752. end
  753. end
  754. end)
  755. end)
  756.  
  757. TextButton_2.Parent = Frame
  758. TextButton_2.BackgroundColor3 = Color3.new(1, 1, 1)
  759. TextButton_2.Position = UDim2.new(0.261265785, 0, 0.615844727, 0)
  760. TextButton_2.Size = UDim2.new(0, 200, 0, 50)
  761. TextButton_2.Font = Enum.Font.SourceSans
  762. TextButton_2.Text = "Noclip R6"
  763. TextButton_2.TextColor3 = Color3.new(0, 0, 0)
  764. TextButton_2.TextSize = 14
  765. TextButton_2.MouseButton1Down:connect(function()
  766. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = math.huge
  767. game.Players.LocalPlayer.Character.Humanoid.Health = math.huge
  768. while true do
  769. game:GetService("RunService").Stepped:wait()
  770. game.Players.LocalPlayer.Character.Head.CanCollide = false
  771. game.Players.LocalPlayer.Character.Torso.CanCollide = false
  772. end
  773. end)
  774.  
  775. TextLabel.Parent = Frame
  776. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  777. TextLabel.Position = UDim2.new(0.104106054, 0, 0.111652002, 0)
  778. TextLabel.Size = UDim2.new(0, 299, 0, 50)
  779. TextLabel.Font = Enum.Font.SourceSans
  780. TextLabel.Text = "Devel Noclip"
  781. TextLabel.TextColor3 = Color3.new(0, 0, 0)
  782. TextLabel.TextSize = 14
  783. TextLabel.TextWrapped = true
  784. -- Scripts:
  785. function SCRIPT_GBXM85_FAKESCRIPT() -- Drag.LocalScript
  786. local script = Instance.new('LocalScript')
  787. script.Parent = Drag
  788. wanttobemoved=script.Parent.Parent
  789. X=wanttobemoved.Position.X.Offset
  790. Y=wanttobemoved.Position.Y.Offset
  791. XS=wanttobemoved.Position.X.Scale
  792. YS=wanttobemoved.Position.Y.Scale
  793. function down(posX,posY)--the positions of the mouse
  794. drag=true--activate the drag function
  795. X=wanttobemoved.Position.X.Offset--redefines the value "X"
  796. Y=wanttobemoved.Position.Y.Offset--redefines the value "Y"
  797. XS=wanttobemoved.Position.X.Scale
  798. YS=wanttobemoved.Position.Y.Scale
  799. DposX=posX-X--the mouse's X position offset by the frame's X position.
  800. DposY=posY-Y--the mouse's Y position offset by the frame's Y position.
  801. print(""..DposX..","..DposY.."")--remembers the values DposX and DposY in the output toolbar.
  802. end
  803. function up()
  804. drag=false--deactivate the drag
  805. end
  806. function move(posX,posY)--again, the positions of the mouse
  807. if drag then--if held down then
  808. wanttobemoved.Position=UDim2.new(XS,posX - DposX,YS,posY - DposY)
  809. end
  810. end
  811. script.Parent.MouseButton1Down:connect(down)
  812. script.Parent.MouseButton1Up:connect(up)
  813. script.Parent.MouseLeave:connect(up)
  814. script.Parent.MouseMoved:connect(move)
  815.  
  816. end
  817. coroutine.resume(coroutine.create(SCRIPT_GBXM85_FAKESCRIPT))
  818. end})
  819.  
  820.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement