Advertisement
H2KREB0RN

GIGDISIAH alaheo

May 25th, 2024
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 18.60 KB | None | 0 0
  1. if game.Workspace.TheOrotund:FindFirstChild("Highlight") then
  2. game.Workspace.TheOrotund.Highlight:Destroy()
  3. end
  4. if game.Workspace.TheCajoler:FindFirstChild("Highlight") then
  5. game.Workspace.TheCajoler.Highlight:Destroy()
  6. end
  7. local orothigh = Instance.new("Highlight")
  8. orothigh.Parent = game.Workspace.TheOrotund
  9. orothigh.OutlineColor = Color3.fromRGB(225,0,0)
  10. orothigh.Enabled = false
  11. local cajohigh = Instance.new("Highlight")
  12. cajohigh.Parent = game.Workspace.TheCajoler
  13. cajohigh.OutlineColor = Color3.fromRGB(0,225,0)
  14. cajohigh.Enabled = false
  15. --GUI
  16. local OrionLib = loadstring(game:HttpGet(('https://raw.githubusercontent.com/shlexware/Orion/main/source')))()
  17. local Window = OrionLib:MakeWindow({Name = "The Maze | H2K Reborn Hub "..identifyexecutor(), HidePremium = false, SaveConfig = true, ConfigFolder = "The Maze Ballz",IntroText = "H2K Reborn Hub"})
  18. --TABS
  19. local h = Window:MakeTab({
  20. Name = "Home",
  21. Icon = "rbxassetid://4483345998",
  22. PremiumOnly = false
  23. })
  24.  
  25. local m = Window:MakeTab({
  26. Name = "Main",
  27. Icon = "rbxassetid://4483345998",
  28. PremiumOnly = false
  29. })
  30.  
  31. local p = Window:MakeTab({
  32. Name = "Player",
  33. Icon = "rbxassetid://4483345998",
  34. PremiumOnly = false
  35. })
  36.  
  37. local e = Window:MakeTab({
  38. Name = "ESP",
  39. Icon = "rbxassetid://4483345998",
  40. PremiumOnly = false
  41. })
  42.  
  43. local t = Window:MakeTab({
  44. Name = "Teleport",
  45. Icon = "rbxassetid://4483345998",
  46. PremiumOnly = false
  47. })
  48.  
  49. local c = Window:MakeTab({
  50. Name = "Credits",
  51. Icon = "rbxassetid://4483345998",
  52. PremiumOnly = false
  53. })
  54. --SECTIONS
  55. local ho = h:AddSection({
  56. Name = "Home"
  57. })
  58.  
  59. local ma = m:AddSection({
  60. Name = "Main"
  61. })
  62.  
  63. local s = m:AddSection({
  64. Name = "Sounds"
  65. })
  66.  
  67. local pl = p:AddSection({
  68. Name = "Player"
  69. })
  70.  
  71. local es = e:AddSection({
  72. Name = "ESP"
  73. })
  74.  
  75. local te = t:AddSection({
  76. Name = "Teleport"
  77. })
  78.  
  79. local cr = c:AddSection({
  80. Name = "Credits"
  81. })
  82. --BUTTONS
  83. ma:AddToggle({
  84. Name = "Fullbright",
  85. Default = false,
  86. Callback = function(v)
  87. if v then
  88. local lighting = game:GetService("Lighting");
  89. lighting.Ambient = Color3.fromRGB(255, 255, 255);
  90. lighting.Brightness = 50;
  91. lighting.FogEnd = 1e10;
  92. lighting.Blur.Enabled = false
  93. lighting.Greyish.Enabled = false
  94. game.Players.LocalPlayer.PlayerGui.CurrentView.Enabled = false
  95. else
  96. local lighting = game:GetService("Lighting");
  97. lighting.Ambient = Color3.fromRGB(8, 8, 8);
  98. lighting.Brightness = 1;
  99. lighting.FogEnd = 95;
  100. lighting.Blur.Enabled = true
  101. lighting.Greyish.Enabled = true
  102. game.Players.LocalPlayer.PlayerGui.CurrentView.Enabled = true
  103. end
  104. end
  105. })
  106.  
  107. ma:AddButton({
  108. Name = "Remove Trees",
  109. Callback = function()
  110. game.Workspace.Trees:Destroy()
  111. end
  112. })
  113.  
  114. ma:AddButton({
  115. Name = "Spam Axe (Reset to stop)",
  116. Callback = function()
  117. loopEnabled = true
  118. repeat
  119. wait(0)
  120. if loopEnabled then
  121. for _, a in pairs(game:GetService("Workspace"):GetDescendants()) do
  122. if a.Name == "ClickDetector" and a.Parent.Parent.Name == "Axe" then
  123. fireclickdetector(a)
  124. end
  125. end
  126. for _, a in pairs(game.Players.LocalPlayer.Backpack:GetChildren()) do
  127. if a.Name == "Axe" and not game.Players.LocalPlayer.Character:FindFirstChild("Axe") then
  128. a.Parent = game.Players.LocalPlayer.Character
  129. end
  130. end
  131. end
  132. until game.Players.LocalPlayer.Character.Humanoid.Health == 0
  133. end
  134. })
  135.  
  136. ma:AddButton({
  137. Name = "Get All Rocks",
  138. Callback = function()
  139. if game.Workspace.SpawnedObjects:FindFirstChild("Rock1") then
  140. if game.Workspace.SpawnedObjects.Rock1.Handle:FindFirstChild("ClickDetector") then
  141. fireclickdetector(game.Workspace.SpawnedObjects.Rock1.Handle.ClickDetector)
  142. end
  143. end
  144. if game.Workspace.SpawnedObjects:FindFirstChild("Rock2") then
  145. if game.Workspace.SpawnedObjects.Rock2.Handle:FindFirstChild("ClickDetector") then
  146. fireclickdetector(game.Workspace.SpawnedObjects.Rock2.Handle.ClickDetector)
  147. end
  148. end
  149. end
  150. })
  151.  
  152. ma:AddButton({
  153. Name = "Get All Batteries",
  154. Callback = function()
  155. if game.Workspace.SpawnedObjects:FindFirstChild("Battery1") then
  156. if game.Workspace.SpawnedObjects.Battery1.Handle:FindFirstChild("ClickDetector") then
  157. fireclickdetector(game.Workspace.SpawnedObjects.Battery1.Handle.ClickDetector)
  158. end
  159. end
  160. if game.Workspace.SpawnedObjects:FindFirstChild("Battery2") then
  161. if game.Workspace.SpawnedObjects.Battery2.Handle:FindFirstChild("ClickDetector") then
  162. fireclickdetector(game.Workspace.SpawnedObjects.Battery2.Handle.ClickDetector)
  163. end
  164. end
  165. if game.Workspace.SpawnedObjects:FindFirstChild("Battery3") then
  166. if game.Workspace.SpawnedObjects.Battery3.Handle:FindFirstChild("ClickDetector") then
  167. fireclickdetector(game.Workspace.SpawnedObjects.Battery3.Handle.ClickDetector)
  168. end
  169. end
  170. if game.Workspace.SpawnedObjects:FindFirstChild("Battery4") then
  171. if game.Workspace.SpawnedObjects.Battery4.Handle:FindFirstChild("ClickDetector") then
  172. fireclickdetector(game.Workspace.SpawnedObjects.Battery4.Handle.ClickDetector)
  173. end
  174. end
  175. end
  176. })
  177.  
  178. ma:AddButton({
  179. Name = "Get Axe",
  180. Callback = function()
  181. if game.Workspace:FindFirstChild("Axe") then
  182. if game.Workspace.Axe.Handle:FindFirstChild("ClickDetector") then
  183. fireclickdetector(game.Workspace.Axe.Handle.ClickDetector)
  184. end
  185. end
  186. end
  187. })
  188.  
  189. ma:AddButton({
  190. Name = "Get Flashlight",
  191. Callback = function()
  192. if game.Workspace:FindFirstChild("Flashlight") then
  193. if game.Workspace.Flashlight.Flashlight:FindFirstChild("ClickDetector") then
  194. fireclickdetector(game.Workspace.Flashlight.Flashlight.ClickDetector)
  195. end
  196. end
  197. end
  198. })
  199.  
  200. ma:AddButton({
  201. Name = "Get Camera",
  202. Callback = function()
  203. if game.Workspace:FindFirstChild("Camera") then
  204. local model = game.Workspace.Camera
  205. for _,v in pairs(model:GetChildren()) do
  206. if v:IsA("Model") and v.Name == "ViewModel" then
  207. model.Name = "Camera2"
  208. end
  209. end
  210. end
  211. wait(0.01)
  212. if game.Workspace:FindFirstChild("Camera") then
  213. if game.Workspace.Camera.Camera:FindFirstChild("ClickDetector") then
  214. fireclickdetector(game.Workspace.Camera.Camera.ClickDetector)
  215. end
  216. end
  217. end
  218. })
  219.  
  220. s:AddLabel("Sounds is heard by all players")
  221.  
  222. s:AddButton({
  223. Name = "Play All Sound",
  224. Callback = function()
  225. for _, sound in next, workspace:GetDescendants() do
  226. if sound:IsA("Sound") then
  227. sound:Play()
  228. end
  229. end
  230. end
  231. })
  232.  
  233. s:AddButton({
  234. Name = "Play Flashlight Sound (On)",
  235. Callback = function()
  236. for _, sound in next, workspace:GetDescendants() do
  237. if sound:IsA("Sound") and sound.SoundId == "http://www.roblox.com/asset/?id=115959318" then
  238. sound:Play()
  239. end
  240. end
  241. end
  242. })
  243.  
  244. s:AddButton({
  245. Name = "Play Flashlight Sound (Charge)",
  246. Callback = function()
  247. for _, sound in next, workspace:GetDescendants() do
  248. if sound:IsA("Sound") and sound.SoundId == "rbxassetid://2034189546" and sound.Name == "Charge" then
  249. sound:Play()
  250. end
  251. end
  252. end
  253. })
  254.  
  255. s:AddButton({
  256. Name = "Play Flashlight Sound (Die)",
  257. Callback = function()
  258. for _, sound in next, workspace:GetDescendants() do
  259. if sound:IsA("Sound") and sound.Name == "Die" then
  260. sound:Play()
  261. end
  262. end
  263. end
  264. })
  265.  
  266. s:AddButton({
  267. Name = "Play Camera Sound (Shot)",
  268. Callback = function()
  269. for _, sound in next, workspace:GetDescendants() do
  270. if sound:IsA("Sound") and sound.SoundId == "rbxassetid://278060974" then
  271. sound:Play()
  272. end
  273. end
  274. end
  275. })
  276.  
  277. s:AddButton({
  278. Name = "Play DroppedAxe Sound (Hit)",
  279. Callback = function()
  280. for _, sound in next, workspace:GetDescendants() do
  281. if sound:IsA("Sound") and sound.SoundId == "rbxassetid://1837829456" then
  282. sound:Play()
  283. end
  284. end
  285. end
  286. })
  287.  
  288. s:AddButton({
  289. Name = "Play DroppedAxe Sound (Whoosh)",
  290. Callback = function()
  291. for _, sound in next, workspace:GetDescendants() do
  292. if sound:IsA("Sound") and sound.SoundId == "rbxassetid://711753382" then
  293. sound:Play()
  294. end
  295. end
  296. end
  297. })
  298.  
  299. s:AddButton({
  300. Name = "Play WoodPlanks Sound (Break)",
  301. Callback = function()
  302. for _, sound in next, workspace:GetDescendants() do
  303. if sound:IsA("Sound") and sound.SoundId == "rbxassetid://147685617" then
  304. sound:Play()
  305. end
  306. end
  307. end
  308. })
  309.  
  310. s:AddButton({
  311. Name = "Play Player Sound (FallDamage)",
  312. Callback = function()
  313. for _, sound in next, workspace:GetDescendants() do
  314. if sound:IsA("Sound") and sound.SoundId == "rbxassetid://138201809" then
  315. sound:Play()
  316. end
  317. end
  318. end
  319. })
  320.  
  321. s:AddButton({
  322. Name = "Play Player Sound (Running)",
  323. Callback = function()
  324. for _, sound in next, workspace:GetDescendants() do
  325. if sound:IsA("Sound") and sound.SoundId == "rbxasset://sounds/action_footsteps_plastic.mp3" then
  326. sound:Play()
  327. end
  328. end
  329. end
  330. })
  331.  
  332. s:AddButton({
  333. Name = "Play Orotund Sound (Chase)",
  334. Callback = function()
  335. local random = math.random(1,5)
  336. if random == 1 then
  337. game.Workspace.TheOrotund.Head.Horror1:Play()
  338. elseif random == 2 then
  339. game.Workspace.TheOrotund.Head.Horror2:Play()
  340. elseif random == 3 then
  341. game.Workspace.TheOrotund.Head.Horror3:Play()
  342. elseif random == 4 then
  343. game.Workspace.TheOrotund.Head.Horror4:Play()
  344. elseif random == 5 then
  345. game.Workspace.TheOrotund.Head.Horror5:Play()
  346. end
  347. end
  348. })
  349.  
  350. s:AddButton({
  351. Name = "Play Orotund Sound (Scream)",
  352. Callback = function()
  353. game.Workspace.TheOrotund.Head.Scream:Play()
  354. end
  355. })
  356.  
  357. s:AddButton({
  358. Name = "Play Orotund Sound (Footstep)",
  359. Callback = function()
  360. game.Workspace.TheOrotund.Head.Footstep:Play()
  361. end
  362. })
  363.  
  364. s:AddButton({
  365. Name = "Play Orotund Sound (Footstep) 2",
  366. Callback = function()
  367. game.Workspace.TheOrotund.Footsteps.Footstep:Play()
  368. end
  369. })
  370.  
  371. s:AddButton({
  372. Name = "Play Orotund Sound (Kill)",
  373. Callback = function()
  374. game.Workspace.TheOrotund.HumanoidRootPart.Kill.Kill1:Play()
  375. end
  376. })
  377.  
  378. s:AddButton({
  379. Name = "Play Cajoler Sound (Chase)",
  380. Callback = function()
  381. local random = math.random(1,5)
  382. if random == 1 then
  383. game.Workspace.TheCajoler.Head.Chase1:Play()
  384. elseif random == 2 then
  385. game.Workspace.TheCajoler.Head.Chase2:Play()
  386. elseif random == 3 then
  387. game.Workspace.TheCajoler.Head.Chase3:Play()
  388. end
  389. end
  390. })
  391.  
  392. s:AddButton({
  393. Name = "Play Cajoler Sound (Splat)",
  394. Callback = function()
  395. game.Workspace.TheCajoler.Head.Splat:Play()
  396. end
  397. })
  398.  
  399. s:AddButton({
  400. Name = "Play Cajoler Sound (Kill)",
  401. Callback = function()
  402. game.Workspace.TheCajoler.HumanoidRootPart.Kill.Kill1:Play()
  403. end
  404. })
  405.  
  406. pl:AddToggle({
  407. Name = "Unlock FirstPerson v1",
  408. Default = false,
  409. Callback = function(v)
  410. if v then
  411. game.Players.LocalPlayer.PlayerGui.FirstPerson.Value = false
  412. else
  413. game.Players.LocalPlayer.PlayerGui.FirstPerson.Value = true
  414. end
  415. end
  416. })
  417.  
  418. pl:AddToggle({
  419. Name = "Unlock FirstPerson v2",
  420. Default = false,
  421. Callback = function(v)
  422. if v then
  423. game.Players.LocalPlayer.PlayerGui.FirstPerson.Value = false
  424. game.Players.LocalPlayer.PlayerGui.FirstPerson.Script.Enabled = false
  425. game.Players.LocalPlayer.CameraMinZoomDistance = 0.5
  426. game.Players.LocalPlayer.CameraMaxZoomDistance = 50
  427. else
  428. game.Players.LocalPlayer.PlayerGui.FirstPerson.Value = true
  429. game.Players.LocalPlayer.PlayerGui.FirstPerson.Script.Enabled = true
  430. game.Players.LocalPlayer.CameraMinZoomDistance = 0.5
  431. game.Players.LocalPlayer.CameraMaxZoomDistance = 0.5
  432. end
  433. end
  434. })
  435.  
  436. pl:AddButton({
  437. Name = "GodMode",
  438. Callback = function()
  439. game.Players.LocalPlayer.Character.TYPE:Destroy()
  440. end
  441. })
  442.  
  443. pl:AddButton({
  444. Name = "Remove FallDamage",
  445. Callback = function()
  446. game.Players.LocalPlayer.Character.FallDamage:Destroy()
  447. end
  448. })
  449.  
  450. es:AddToggle({
  451. Name = "Highlight Orotund",
  452. Default = false,
  453. Callback = function(v)
  454. local otorhigh = Instance.new("Highlight")
  455. if v then
  456. orothigh.Enabled = true
  457. else
  458. orothigh.Enabled = false
  459. end
  460. end
  461. })
  462.  
  463. local trans1 = es:AddSlider({
  464. Name = "Highlight OutlineTransparency (Orotund)",
  465. Min = 0,
  466. Max = 1,
  467. Default = 0,
  468. Color = Color3.fromRGB(225,0,0),
  469. Increment = 0.1,
  470. ValueName = "%",
  471. Callback = function(v)
  472. orothigh.OutlineTransparency = v
  473. end
  474. })
  475.  
  476. local trans2 = es:AddSlider({
  477. Name = "Highlight FillTransparency (Orotund)",
  478. Min = 0,
  479. Max = 1,
  480. Default = 0.5,
  481. Color = Color3.fromRGB(180,0,0),
  482. Increment = 0.1,
  483. ValueName = "%",
  484. Callback = function(v)
  485. orothigh.FillTransparency = v
  486. end
  487. })
  488.  
  489. local color1 = es:AddColorpicker({
  490. Name = "Highlight FillColor (Orotund)",
  491. Default = Color3.fromRGB(255, 0, 0),
  492. Callback = function(v)
  493. orothigh.FillColor = v
  494. end
  495. })
  496.  
  497. local color2 = es:AddColorpicker({
  498. Name = "Highlight OutlineColor (Orotund)",
  499. Default = Color3.fromRGB(255, 0, 0),
  500. Callback = function(v)
  501. orothigh.OutlineColor = v
  502. end
  503. })
  504.  
  505. es:AddButton({
  506. Name = "Reset",
  507. Callback = function()
  508. trans1:Set(0)
  509. trans2:Set(0.5)
  510. color1:Set(Color3.fromRGB(255,0,0))
  511. color2:Set(Color3.fromRGB(255,0,0))
  512. end
  513. })
  514.  
  515. es:AddToggle({
  516. Name = "Highlight Cajoler",
  517. Default = false,
  518. Callback = function(v)
  519. local otorhigh = Instance.new("Highlight")
  520. if v then
  521. cajohigh.Enabled = true
  522. else
  523. cajohigh.Enabled = false
  524. end
  525. end
  526. })
  527.  
  528. local trans3 = es:AddSlider({
  529. Name = "Highlight OutlineTransparency (Cajoler)",
  530. Min = 0,
  531. Max = 1,
  532. Default = 0,
  533. Color = Color3.fromRGB(0,0,255),
  534. Increment = 0.1,
  535. ValueName = "%",
  536. Callback = function(v)
  537. cajohigh.OutlineTransparency = v
  538. end
  539. })
  540.  
  541. local trans4 = es:AddSlider({
  542. Name = "Highlight FillTransparency (Cajoler)",
  543. Min = 0,
  544. Max = 1,
  545. Default = 0.5,
  546. Color = Color3.fromRGB(0,0,180),
  547. Increment = 0.1,
  548. ValueName = "%",
  549. Callback = function(v)
  550. cajohigh.FillTransparency = v
  551. end
  552. })
  553.  
  554. local color3 = es:AddColorpicker({
  555. Name = "Highlight FillColor (Cajoler)",
  556. Default = Color3.fromRGB(0, 0, 255),
  557. Callback = function(v)
  558. cajohigh.FillColor = v
  559. end
  560. })
  561.  
  562. local color4 = es:AddColorpicker({
  563. Name = "Highlight OutlineColor (Cajoler)",
  564. Default = Color3.fromRGB(0, 0, 255),
  565. Callback = function(v)
  566. cajohigh.OutlineColor = v
  567. end
  568. })
  569.  
  570. es:AddButton({
  571. Name = "Reset",
  572. Callback = function()
  573. trans3:Set(0)
  574. trans4:Set(0.5)
  575. color3:Set(Color3.fromRGB(0,0,255))
  576. color4:Set(Color3.fromRGB(0,0,255))
  577. end
  578. })
  579.  
  580. te:AddButton({
  581. Name = "Cave (Out)",
  582. Callback = function()
  583. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  584. local location = CFrame.new(-259.668304, 19.8173637, -71.8225174, -0.764655232, -0.0332947075, 0.643578947, -0.0299841259, 0.99942106, 0.0160787012, -0.643741667, -0.00700248871, -0.765210867)
  585. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  586. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  587. wait(0.1)
  588. pl.CFrame = location
  589. end
  590. })
  591.  
  592. te:AddButton({
  593. Name = "Cave (In)",
  594. Callback = function()
  595. local rand = math.random(1,6)
  596. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  597. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  598. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  599. wait(0.1)
  600. if rand == 1 then
  601. pl.CFrame = game.Workspace.Teleporters.Positions.Pos1.CFrame
  602. elseif rand == 2 then
  603. pl.CFrame = game.Workspace.Teleporters.Positions.Pos2.CFrame
  604. elseif rand == 3 then
  605. pl.CFrame = game.Workspace.Teleporters.Positions.Pos3.CFrame
  606. elseif rand == 4 then
  607. pl.CFrame = game.Workspace.Teleporters.Positions.Pos4.CFrame
  608. elseif rand == 5 then
  609. pl.CFrame = game.Workspace.Teleporters.Positions.Pos5.CFrame
  610. elseif rand == 6 then
  611. pl.CFrame = game.Workspace.Teleporters.Positions.Pos6.CFrame
  612. end
  613. end
  614. })
  615.  
  616. te:AddButton({
  617. Name = "Campervan",
  618. Callback = function()
  619. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  620. local location = CFrame.new(-179.681091, 20.7378273, -136.245087, 0.91303575, -0.00175878801, -0.407875776, 0.00200626208, 0.999997973, 0.00017898716, 0.407874644, -0.000981727382, 0.913037419)
  621. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  622. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  623. wait(0.1)
  624. pl.CFrame = location
  625. end
  626. })
  627.  
  628. te:AddButton({
  629. Name = "Ruins",
  630. Callback = function()
  631. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  632. local location = CFrame.new(52.2030029, 17.009119, -215.972214, 0.101293422, 0.0114408778, -0.994790792, 0.000623355911, 0.999932945, 0.0115634892, 0.994856417, -0.00179141411, 0.101279505)
  633. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  634. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  635. wait(0.1)
  636. pl.CFrame = location
  637. end
  638. })
  639.  
  640. te:AddButton({
  641. Name = "Piano",
  642. Callback = function()
  643. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  644. local location = CFrame.new(-49.0355301, 15, -723.310974, 0.999604881, -9.10099551e-09, 0.0281083826, 9.66981162e-09, 1, -2.01005914e-08, -0.0281083826, 2.03644515e-08, 0.999604881)
  645. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  646. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  647. wait(0.1)
  648. pl.CFrame = location
  649. end
  650. })
  651.  
  652. te:AddButton({
  653. Name = "Cemetry",
  654. Callback = function()
  655. local pl = game.Players.LocalPlayer.Character.HumanoidRootPart
  656. local location = CFrame.new(316.69986, 15.00002, -499.407959, 0.742414773, 0.000193147498, -0.669940531, -0.000273512298, 0.99999994, -1.47954543e-05, 0.669940472, 0.000194221328, 0.742414773)
  657. local humanoid = game.Players.LocalPlayer.Character.Humanoid
  658. humanoid:ChangeState(Enum.HumanoidStateType.Jumping)
  659. wait(0.1)
  660. pl.CFrame = location
  661. end
  662. })
  663.  
  664. c:AddLabel("Made by H2K Reborn")
  665. c:AddLabel("My Discord: https://discord.com/invite/7Yett3uTzc")
  666. c:AddLabel("Hub: Orion Hub")
  667. c:AddButton({
  668. Name = "Copy Orion GitHub",
  669. Callback = function()
  670. setclipboard("https://github.com/shlexware/Orion/blob/main/Documentation.md")
  671. end
  672. })
  673.  
  674. local parag = h:AddParagraph("Time:","Time")
  675. local parag2 = h:AddParagraph("Day:","Time")
  676. while true do
  677. local TimeInUnix = os.time()
  678.  
  679. local stringToFormat = "%H:%M:%S"
  680. local stringToFormat2 = "%A, %B %dth"
  681.  
  682. local result = os.date(stringToFormat, TimeInUnix)
  683. local result2 = os.date(stringToFormat2, TimeInUnix)
  684.  
  685. parag:Set(result, "sus")
  686. parag2:Set(result2, "sus")
  687.  
  688. wait(0)
  689. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement