Advertisement
THEDEVEL2220

UPDATED 3.1

Sep 11th, 2022
207
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 17.98 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 Devel"
  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 = 50
  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 = 50
  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 = 50
  325. end
  326.  
  327. mouse.KeyDown:connect(function(key)
  328. if key:lower() == "e" then
  329. if flying then flying = false
  330. speed = 50
  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. plr.Character.Humanoid.StateChanged:Connect(function(o,n)
  359. if n == Enum.HumanoidStateType.Running then
  360. ctrl.f = 1
  361. else
  362. ctrl.f = 0
  363. end
  364.  
  365. end)
  366. script.Parent.TextButton.MouseButton1Click:Connect(function()
  367. if flying then
  368. flying = false
  369. speed = 50
  370. else
  371. flying = true
  372. Fly()
  373. end
  374. end)
  375.  
  376. end
  377. coroutine.wrap(NQWSTGE_fake_script)()
  378. local function RAQA_fake_script() -- Frame.Buttons
  379. local script = Instance.new('LocalScript', Frame)
  380.  
  381. local Trigger = script.Parent.MiniTrext
  382. local IsMini = false
  383. function CreateTween(Instance,Style,Direction,Time,table,RepeatCount,CanRepeat,Delay)
  384. local ts = game:GetService("TweenService")
  385. local TweenInfo = TweenInfo.new(Time,Style,Direction,RepeatCount,CanRepeat,Delay)
  386. local Tween = ts:Create(Instance,TweenInfo,table)
  387. repeat wait() until Tween ~= nil
  388. return Tween
  389.  
  390. end
  391. Trigger.MouseButton1Click:Connect(function()
  392. if IsMini then
  393. 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()
  394. IsMini = false
  395. Trigger.Text = "-"
  396. else
  397. 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()
  398. IsMini = true
  399. Trigger.Text = "+"
  400. end
  401. end)
  402. script.Parent.Delete.MouseButton1Click:Connect(function()
  403. script.Parent.Parent:Destroy()
  404. end)
  405. end
  406. coroutine.wrap(RAQA_fake_script)()
  407. local function TKVUMP_fake_script() -- Frame.Drag Gui
  408. local script = Instance.new('LocalScript', Frame)
  409.  
  410. local UserInputService = game:GetService("UserInputService")
  411.  
  412. local gui = script.Parent
  413.  
  414. local dragging
  415. local dragInput
  416. local dragStart
  417. local startPos
  418.  
  419. local function update(input)
  420. local delta = input.Position - dragStart
  421. gui.Position = UDim2.new(startPos.X.Scale, startPos.X.Offset + delta.X, startPos.Y.Scale, startPos.Y.Offset + delta.Y)
  422. end
  423.  
  424. gui.InputBegan:Connect(function(input)
  425. if input.UserInputType == Enum.UserInputType.MouseButton1 or input.UserInputType == Enum.UserInputType.Touch then
  426. dragging = true
  427. dragStart = input.Position
  428. startPos = gui.Position
  429.  
  430. input.Changed:Connect(function()
  431. if input.UserInputState == Enum.UserInputState.End then
  432. dragging = false
  433. end
  434. end)
  435. end
  436. end)
  437.  
  438. gui.InputChanged:Connect(function(input)
  439. if input.UserInputType == Enum.UserInputType.MouseMovement or input.UserInputType == Enum.UserInputType.Touch then
  440. dragInput = input
  441. end
  442. end)
  443.  
  444. UserInputService.InputChanged:Connect(function(input)
  445. if input == dragInput and dragging then
  446. update(input)
  447. end
  448. end)
  449. end
  450. coroutine.wrap(TKVUMP_fake_script)()
  451. Tab:AddButton({
  452. Name = "Noclip",
  453. Min =16,
  454. Max =250,
  455. Default = 45,
  456. Color = Color3.fromRGB(255,255,255),
  457. Increment = 1,
  458. ValueName = "Noclip",
  459. Callback = function(Value) local Workspace = game:GetService("Workspace")
  460. local CoreGui = game:GetService("CoreGui")
  461. local Players = game:GetService("Players")
  462. local Noclip = Instance.new("ScreenGui")
  463. local BG = Instance.new("Frame")
  464. local Title = Instance.new("TextLabel")
  465. local Toggle = Instance.new("TextButton")
  466. local StatusPF = Instance.new("TextLabel")
  467. local Status = Instance.new("TextLabel")
  468. local Credit = Instance.new("TextLabel")
  469. local Plr = Players.LocalPlayer
  470. local Clipon = false
  471.  
  472. Noclip.Name = "Noclip"
  473. Noclip.Parent = game.CoreGui
  474.  
  475. BG.Name = "BG"
  476. BG.Parent = Noclip
  477. BG.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  478. BG.BorderColor3 = Color3.new(0.0588235, 0.0588235, 0.0588235)
  479. BG.BorderSizePixel = 2
  480. BG.Position = UDim2.new(0.149479166, 0, 0.82087779, 0)
  481. BG.Size = UDim2.new(0, 210, 0, 127)
  482. BG.Active = true
  483. BG.Draggable = true
  484.  
  485. Title.Name = "Title"
  486. Title.Parent = BG
  487. Title.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  488. Title.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  489. Title.BorderSizePixel = 2
  490. Title.Size = UDim2.new(0, 210, 0, 33)
  491. Title.Font = Enum.Font.Highway
  492. Title.Text = "Noclip"
  493. Title.TextColor3 = Color3.new(1, 1, 1)
  494. Title.FontSize = Enum.FontSize.Size32
  495. Title.TextSize = 30
  496. Title.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  497. Title.TextStrokeTransparency = 0
  498.  
  499. Toggle.Parent = BG
  500. Toggle.BackgroundColor3 = Color3.new(0.266667, 0.00392157, 0.627451)
  501. Toggle.BorderColor3 = Color3.new(0.180392, 0, 0.431373)
  502. Toggle.BorderSizePixel = 2
  503. Toggle.Position = UDim2.new(0.152380958, 0, 0.374192119, 0)
  504. Toggle.Size = UDim2.new(0, 146, 0, 36)
  505. Toggle.Font = Enum.Font.Highway
  506. Toggle.FontSize = Enum.FontSize.Size28
  507. Toggle.Text = "Toggle"
  508. Toggle.TextColor3 = Color3.new(1, 1, 1)
  509. Toggle.TextSize = 25
  510. Toggle.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  511. Toggle.TextStrokeTransparency = 0
  512.  
  513. StatusPF.Name = "StatusPF"
  514. StatusPF.Parent = BG
  515. StatusPF.BackgroundColor3 = Color3.new(1, 1, 1)
  516. StatusPF.BackgroundTransparency = 1
  517. StatusPF.Position = UDim2.new(0.314285725, 0, 0.708661377, 0)
  518. StatusPF.Size = UDim2.new(0, 56, 0, 20)
  519. StatusPF.Font = Enum.Font.Highway
  520. StatusPF.FontSize = Enum.FontSize.Size24
  521. StatusPF.Text = "Status:"
  522. StatusPF.TextColor3 = Color3.new(1, 1, 1)
  523. StatusPF.TextSize = 20
  524. StatusPF.TextStrokeColor3 = Color3.new(0.333333, 0.333333, 0.333333)
  525. StatusPF.TextStrokeTransparency = 0
  526. StatusPF.TextWrapped = true
  527.  
  528. Status.Name = "Status"
  529. Status.Parent = BG
  530. Status.BackgroundColor3 = Color3.new(1, 1, 1)
  531. Status.BackgroundTransparency = 1
  532. Status.Position = UDim2.new(0.580952346, 0, 0.708661377, 0)
  533. Status.Size = UDim2.new(0, 56, 0, 20)
  534. Status.Font = Enum.Font.Highway
  535. Status.FontSize = Enum.FontSize.Size14
  536. Status.Text = "off"
  537. Status.TextColor3 = Color3.new(0.666667, 0, 0)
  538. Status.TextScaled = true
  539. Status.TextSize = 14
  540. Status.TextStrokeColor3 = Color3.new(0.180392, 0, 0.431373)
  541. Status.TextWrapped = true
  542. Status.TextXAlignment = Enum.TextXAlignment.Left
  543.  
  544. Credit.Name = "Credit"
  545. Credit.Parent = BG
  546. Credit.BackgroundColor3 = Color3.new(1, 1, 1)
  547. Credit.BackgroundTransparency = 1
  548. Credit.Position = UDim2.new(0.195238099, 0, 0.866141737, 0)
  549. Credit.Size = UDim2.new(0, 128, 0, 17)
  550. Credit.Font = Enum.Font.SourceSans
  551. Credit.FontSize = Enum.FontSize.Size18
  552. Credit.Text = "Created by Devel"
  553. Credit.TextColor3 = Color3.new(1, 1, 1)
  554. Credit.TextSize = 16
  555. Credit.TextStrokeColor3 = Color3.new(0.196078, 0.196078, 0.196078)
  556. Credit.TextStrokeTransparency = 0
  557. Credit.TextWrapped = true
  558.  
  559. Toggle.MouseButton1Click:connect(function()
  560. if Status.Text == "off" then
  561. Clipon = true
  562. Status.Text = "on"
  563. Status.TextColor3 = Color3.new(0,185,0)
  564. Stepped = game:GetService("RunService").Stepped:Connect(function()
  565. if not Clipon == false then
  566. for a, b in pairs(Workspace:GetChildren()) do
  567. if b.Name == Plr.Name then
  568. for i, v in pairs(Workspace[Plr.Name]:GetChildren()) do
  569. if v:IsA("BasePart") then
  570. v.CanCollide = false
  571. end end end end
  572. else
  573. Stepped:Disconnect()
  574. end
  575. end)
  576. elseif Status.Text == "on" then
  577. Clipon = false
  578. Status.Text = "off"
  579. Status.TextColor3 = Color3.new(170,0,0)
  580. end
  581. end)
  582. end})
  583. end})
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement