Advertisement
uor

universal time script (OP)

uor
Sep 6th, 2021
6,002
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 23.18 KB | None | 0 0
  1. _G.key = Enum.KeyCode.Q -- Change to whatever if you don't know Keycode go to roblox api doc
  2.  
  3. loadstring(game:HttpGet("https://paste.gg/p/anonymous/cb1c7198b269449eb8a2cf8ced061bed/files/4a98e88f82ee47388b3030a7f000b34e/raw", true))()
  4.  
  5.  
  6. local stationaryrespawn = false
  7. local needsrespawning = false
  8. local haspos = false
  9. local pos = CFrame.new()
  10.  
  11. local Respawning = Instance.new("ScreenGui")
  12. local RespawningButton = Instance.new("TextButton")
  13.  
  14. Respawning.Name = "Respawning"
  15. Respawning.Parent = game.CoreGui
  16.  
  17.  
  18.  
  19. RespawningButton.Name = "RespawningButton"
  20. RespawningButton.Parent = Respawning
  21. RespawningButton.BackgroundColor3 = Color3.new(0.117647, 0.117647, 0.117647)
  22. RespawningButton.BackgroundTransparency = 0.30000001192093
  23. RespawningButton.BorderSizePixel = 0
  24. RespawningButton.Position = UDim2.new(0.0391057241, 0, 0.826617789, 0)
  25. RespawningButton.Size = UDim2.new(0, 83, 0, 34)
  26. RespawningButton.Font = Enum.Font.SourceSans
  27. RespawningButton.Text = "Not Returning"
  28. RespawningButton.TextColor3 = Color3.new(1, 1, 1)
  29. RespawningButton.TextSize = 20
  30. RespawningButton.TextScaled = true
  31. RespawningButton.Draggable = true
  32.  
  33.  
  34.  
  35.  
  36. function StatRespawn(inputObject, gameProcessedEvent)
  37. if inputObject.KeyCode == Enum.KeyCode.N and gameProcessedEvent == false then
  38. stationaryrespawn = not stationaryrespawn
  39. end
  40. end
  41.  
  42.  
  43.  
  44.  
  45.  
  46.  
  47. game:GetService("UserInputService").InputBegan:connect(StatRespawn)
  48.  
  49.  
  50.  
  51. game:GetService('RunService').Stepped:connect(function()
  52.  
  53.  
  54. if stationaryrespawn == true and game.Players.LocalPlayer.Character.Humanoid.Health == 0 then
  55. if haspos == false then
  56. pos = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame
  57. haspos = true
  58. end
  59.  
  60. needsrespawning = true
  61. end
  62.  
  63.  
  64. if needsrespawning == true then
  65. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = pos
  66. end
  67.  
  68.  
  69. if stationaryrespawn == true then
  70. RespawningButton.Text = "Returning"
  71. else
  72. RespawningButton.Text = "Not Returning"
  73. end
  74.  
  75.  
  76. end)
  77.  
  78. game.Players.LocalPlayer.CharacterAdded:connect(function()
  79. wait(1.1)
  80. needsrespawning = false
  81. haspos = false
  82. end)
  83.  
  84. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  85. Text = "[Notice] GUI Made by username 1000hack";
  86. Color = Color3.new(255, 0, 72);
  87. Font = Enum.Font.SourceSansBold;
  88. FontSize = Enum.FontSize.Size24;
  89. })
  90.  
  91. game.StarterGui:SetCore("ChatMakeSystemMessage", {
  92. Text = "[Warning] dont get banned using this on ur main use on alts";
  93. Color = Color3.new(255, 0, 0);
  94. Font = Enum.Font.SourceSansBold;
  95. FontSize = Enum.FontSize.Size24;
  96. })
  97.  
  98.  
  99. local SkidParkour = Instance.new("ScreenGui")
  100. local Main = Instance.new("Frame")
  101. local Functions = Instance.new("Frame")
  102. local CTP = Instance.new("TextButton")
  103. local NameESP = Instance.new("TextButton")
  104. local TPBACK = Instance.new("TextButton")
  105. local TPORB = Instance.new("TextButton")
  106. local TPPlayer = Instance.new("TextButton")
  107. local InputPlayer = Instance.new("TextBox")
  108. local NoFall = Instance.new("TextButton")
  109. local Walkspeed = Instance.new("TextButton")
  110. local Btools = Instance.new("TextButton")
  111. local Gravity = Instance.new("TextButton")
  112. local Settings = Instance.new("Frame")
  113. local WhiteBackground = Instance.new("Frame")
  114. local FormCheck = Instance.new("Frame")
  115. local Form = Instance.new("TextLabel")
  116. local White = Instance.new("TextLabel")
  117. local del = Instance.new("TextButton")
  118. local Credits = Instance.new("Frame")
  119. local Outer = Instance.new("ImageLabel")
  120. local Discord = Instance.new("TextLabel")
  121. local Alone = Instance.new("ImageLabel")
  122. local Discord_2 = Instance.new("TextLabel")
  123. local ROexploits = Instance.new("ImageLabel")
  124. local Discord_3 = Instance.new("TextLabel")
  125. local TextLabel = Instance.new("TextLabel")
  126. local TabList = Instance.new("Frame")
  127. local FunctionsBTN = Instance.new("TextButton")
  128. local SettingsBTN = Instance.new("TextButton")
  129. local CreditsBTN_2 = Instance.new("TextButton")
  130. local Title = Instance.new("TextLabel")
  131. local Close = Instance.new("TextButton")
  132.  
  133. SkidParkour.Name = "SkidParkour"
  134. SkidParkour.Parent = game.CoreGui
  135.  
  136. Main.Name = "Main"
  137. Main.Parent = SkidParkour
  138. Main.Active = true
  139. Main.Draggable = true
  140. Main.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  141. Main.BackgroundTransparency = 1
  142. Main.BorderSizePixel = 0
  143. Main.Position = UDim2.new(0.26029411, 0, 0.32432431, 0)
  144. Main.Size = UDim2.new(0, 676, 0, 323)
  145.  
  146. Functions.Name = "Functions"
  147. Functions.Parent = Main
  148. Functions.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  149. Functions.BorderSizePixel = 0
  150. Functions.Size = UDim2.new(0, 676, 0, 285)
  151. Functions.Visible = true
  152.  
  153. CTP.Name = "CTP"
  154. CTP.Parent = Functions
  155. CTP.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  156. CTP.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  157. CTP.Position = UDim2.new(0.0695266277, 0, 0.259649128, 0)
  158. CTP.Size = UDim2.new(0, 112, 0, 24)
  159. CTP.Font = Enum.Font.SourceSansLight
  160. CTP.Text = "Click TP [Q]"
  161. CTP.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  162. CTP.TextSize = 18
  163. CTP.MouseButton1Click:connect(function()
  164. plr = game.Players.LocalPlayer;
  165. hum = plr.Character.HumanoidRootPart;
  166. mouse = plr:GetMouse()
  167. mouse.KeyDown:connect(function(aa)
  168. if aa == "q" then
  169. if mouse.Target then
  170. hum.CFrame = CFrame.new(mouse.Hit.z, mouse.Hit.y + 5, mouse.Hit.z)
  171. end
  172. end
  173. end)
  174. end)
  175.  
  176. NameESP.Name = "NameESP"
  177. NameESP.Parent = Functions
  178. NameESP.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  179. NameESP.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  180. NameESP.Position = UDim2.new(0.0695266277, 0, 0.3859649, 0)
  181. NameESP.Size = UDim2.new(0, 112, 0, 24)
  182. NameESP.Font = Enum.Font.SourceSansLight
  183. NameESP.Text = "Name ESP"
  184. NameESP.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  185. NameESP.TextSize = 18
  186. NameESP.MouseButton1Click:connect(function()
  187. Important = {
  188. Players = game:GetService("Players"),
  189. Workspace = game:GetService("Workspace"),
  190. CoreGui = game:WaitForChild("CoreGui")
  191. }
  192. local ai = false;
  193. function CreateESP(plr)
  194. if plr ~= nil then
  195. local aj = plr.Character;
  196. if not aj then
  197. return
  198. end;
  199. local ak;
  200. do
  201. repeat
  202. wait()
  203. until aj:FindFirstChild("Head")
  204. end;
  205. ak = aj.Head;
  206. local al = Instance.new("BillboardGui", Important.CoreGui)
  207. al.Adornee = ak;
  208. al.ExtentsOffset = Vector3.new(0, 1, 0)
  209. al.AlwaysOnTop = true;
  210. al.Size = UDim2.new(0, 5, 0, 5)
  211. al.StudsOffset = Vector3.new(0, 3, 0)
  212. al.Name = "ESP_PLAYER_"..plr.Name;
  213. local am = Instance.new("Frame", al)
  214. am.ZIndex = 10;
  215. am.BackgroundTransparency = 1;
  216. am.Size = UDim2.new(1, 0, 1, 0)
  217. local an = Instance.new("TextLabel", am)
  218. an.Name = "Name"
  219. an.ZIndex = 10;
  220. an.Text = plr.Name;
  221. an.Visible = true;
  222. an.TextColor3 = Color3.new(255, 45, 126)
  223. an.BackgroundTransparency = 1;
  224. an.Size = UDim2.new(1, 0, 10, 0)
  225. an.Font = Enum.Font.SourceSansLight;
  226. an.TextSize = 20;
  227. an.TextStrokeTransparency = .5
  228. end
  229. end;
  230. for ag, ah in pairs(Important.Players:GetChildren()) do
  231. if game.GameId == 445664957 then
  232. return
  233. end;
  234. CreateESP(ah)
  235. end
  236. end)
  237.  
  238. TPBACK.Name = "TPBACK"
  239. TPBACK.Parent = Functions
  240. TPBACK.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  241. TPBACK.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  242. TPBACK.Position = UDim2.new(0.0695266277, 0, 0.519298255, 0)
  243. TPBACK.Size = UDim2.new(0, 112, 0, 24)
  244. TPBACK.Font = Enum.Font.SourceSansLight
  245. TPBACK.Text = "TP to backpacks"
  246. TPBACK.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  247. TPBACK.TextSize = 18
  248.  
  249. TPORB.Name = "TPORB"
  250. TPORB.Parent = Functions
  251. TPORB.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  252. TPORB.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  253. TPORB.Position = UDim2.new(0.0695266277, 0, 0.65263164, 0)
  254. TPORB.Size = UDim2.new(0, 112, 0, 24)
  255. TPORB.Font = Enum.Font.SourceSansLight
  256. TPORB.Text = "TP to Orbs"
  257. TPORB.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  258. TPORB.TextSize = 18
  259.  
  260. TPPlayer.Name = "TPPlayer"
  261. TPPlayer.Parent = Functions
  262. TPPlayer.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  263. TPPlayer.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  264. TPPlayer.Position = UDim2.new(0.334319532, 0, 0.519298255, 0)
  265. TPPlayer.Size = UDim2.new(0, 183, 0, 36)
  266. TPPlayer.Font = Enum.Font.SourceSansLight
  267. TPPlayer.Text = "TP To Player"
  268. TPPlayer.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  269. TPPlayer.TextSize = 18
  270. TPPlayer.MouseButton1Down:connect(function()
  271. local tp_namedplayer = InputPlayer.Text
  272. local tp_player = game:GetService("Players")[tp_namedplayer]
  273. local PLR = game:GetService("Players").LocalPlayer
  274. local p = InputPlayer.Text
  275.  
  276. if tp_player then
  277. for i = 1,2 do
  278. wait(.08)
  279. PLR.Character.HumanoidRootPart.CFrame = tp_player.Character.HumanoidRootPart.CFrame + Vector3.new(0, 3, 0)
  280. end
  281. end
  282. end)
  283.  
  284. InputPlayer.Name = "InputPlayer"
  285. InputPlayer.Parent = Functions
  286. InputPlayer.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  287. InputPlayer.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  288. InputPlayer.Position = UDim2.new(0.334319532, 0, 0.343859643, 0)
  289. InputPlayer.Size = UDim2.new(0, 182, 0, 35)
  290. InputPlayer.Font = Enum.Font.SourceSans
  291. InputPlayer.PlaceholderColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  292. InputPlayer.PlaceholderText = "199, 199, 199"
  293. InputPlayer.Text = "InputPlayer"
  294. InputPlayer.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  295. InputPlayer.TextSize = 16
  296.  
  297.  
  298. NoFall.Name = "No Fall"
  299. NoFall.Parent = Functions
  300. NoFall.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  301. NoFall.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  302. NoFall.Position = UDim2.new(0.0695266277, 0, 0.789473653, 0)
  303. NoFall.Size = UDim2.new(0, 112, 0, 24)
  304. NoFall.Font = Enum.Font.SourceSansLight
  305. NoFall.Text = "No Fall"
  306. NoFall.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  307. NoFall.TextSize = 18
  308. local InfiniteJumpEnabled = true
  309. game:GetService("UserInputService").JumpRequest:connect(function()
  310. if InfiniteJumpEnabled == true then
  311. game:GetService"Players".LocalPlayer.Character:FindFirstChildOfClass'Humanoid':ChangeState("Jumping")
  312. if InfiniteJumpEnabled == false then
  313. end
  314. end
  315. end)
  316.  
  317. Walkspeed.Name = "Walkspeed"
  318. Walkspeed.Parent = Functions
  319. Walkspeed.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  320. Walkspeed.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  321. Walkspeed.Position = UDim2.new(0.69970417, 0, 0.259649128, 0)
  322. Walkspeed.Size = UDim2.new(0, 113, 0, 24)
  323. Walkspeed.Font = Enum.Font.SourceSansLight
  324. Walkspeed.Text = "Speed [q]"
  325. Walkspeed.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  326. Walkspeed.TextSize = 18
  327. Walkspeed.MouseButton1Down:connect(function()
  328. local walkspeedplayer = game:GetService("Players").LocalPlayer
  329. local walkspeedmouse = walkspeedplayer:GetMouse()
  330.  
  331. local walkspeedenabled = false
  332.  
  333. function x_walkspeed(key)
  334. if (key == "q") then
  335. if walkspeedenabled == false then
  336. _G.WS = 70;
  337. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  338. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  339. Humanoid.WalkSpeed = _G.WS;
  340. end)
  341. Humanoid.WalkSpeed = _G.WS;
  342.  
  343. walkspeedenabled = true
  344. elseif walkspeedenabled == true then
  345. _G.WS = 30;
  346. local Humanoid = game:GetService("Players").LocalPlayer.Character.Humanoid;
  347. Humanoid:GetPropertyChangedSignal("WalkSpeed"):Connect(function()
  348. Humanoid.WalkSpeed = _G.WS;
  349. end)
  350. Humanoid.WalkSpeed = _G.WS;
  351.  
  352. walkspeedenabled = false
  353. end
  354. end
  355. end
  356.  
  357. walkspeedmouse.KeyDown:connect(x_walkspeed)
  358.  
  359. end)
  360.  
  361. Btools.Name = "Btools"
  362. Btools.Parent = Functions
  363. Btools.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  364. Btools.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  365. Btools.Position = UDim2.new(0.69970417, 0, 0.3859649, 0)
  366. Btools.Size = UDim2.new(0, 113, 0, 24)
  367. Btools.Font = Enum.Font.SourceSansLight
  368. Btools.Text = "Btools"
  369. Btools.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  370. Btools.TextSize = 18
  371. Btools.MouseButton1Down:connect(function()
  372. game.StarterGui:SetCoreGuiEnabled(Enum.CoreGuiType.Backpack, true)
  373. for index, child in pairs(game:GetService("Workspace"):GetChildren()) do
  374. if child.ClassName == "Part" then
  375. child.Locked = false
  376. end
  377. if child.ClassName == "MeshPart" then
  378. child.Locked = false
  379. end
  380. if child.ClassName == "UnionOperation" then
  381. child.Locked = false
  382. end
  383. if child.ClassName == "Model" then
  384. for index, chil in pairs(child:GetChildren()) do
  385. if chil.ClassName == "Part" then
  386. chil.Locked = false
  387. end
  388. if chil.ClassName == "MeshPart" then
  389. chil.Locked = false
  390. end
  391. if chil.ClassName == "UnionOperation" then
  392. chil.Locked = false
  393. end
  394. if chil.ClassName == "Model" then
  395. for index, childe in pairs(chil:GetChildren()) do
  396. if childe.ClassName == "Part" then
  397. childe.Locked = false
  398. end
  399. if childe.ClassName == "MeshPart" then
  400. childe.Locked = false
  401. end
  402. if childe.ClassName == "UnionOperation" then
  403. childe.Locked = false
  404. end
  405. if childe.ClassName == "Model" then
  406. for index, childeo in pairs(childe:GetChildren()) do
  407. if childeo.ClassName == "Part" then
  408. childeo.Locked = false
  409. end
  410. if childeo.ClassName == "MeshPart" then
  411. childeo.Locked = false
  412. end
  413. if childeo.ClassName == "UnionOperation" then
  414. childeo.Locked = false
  415. end
  416. if childeo.ClassName == "Model" then
  417. end
  418. end
  419. end
  420. end
  421. end
  422. end
  423. end
  424. end
  425. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  426. c.BinType = Enum.BinType.Hammer
  427. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  428. c.BinType = Enum.BinType.Clone
  429. c = Instance.new("HopperBin", game:GetService("Players").LocalPlayer.Backpack)
  430. c.BinType = Enum.BinType.Grab
  431. end)
  432.  
  433.  
  434. Gravity.Name = "Gravity"
  435. Gravity.Parent = Functions
  436. Gravity.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  437. Gravity.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  438. Gravity.Position = UDim2.new(0.69970417, 0, 0.519298255, 0)
  439. Gravity.Size = UDim2.new(0, 113, 0, 24)
  440. Gravity.Font = Enum.Font.SourceSansLight
  441. Gravity.Text = "Gravity"
  442. Gravity.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  443. Gravity.TextSize = 18
  444. Gravity.MouseButton1Down:connect(function()
  445. if Gravity == true then
  446. Gravity = false
  447. game.workspace.Gravity = 90
  448. else
  449. Gravity = true
  450. game.workspace.Gravity = 45
  451. end
  452. end)
  453.  
  454. Settings.Name = "Settings"
  455. Settings.Parent = Main
  456. Settings.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  457. Settings.BorderSizePixel = 0
  458. Settings.Size = UDim2.new(0, 676, 0, 285)
  459. Settings.Visible = false
  460.  
  461. WhiteBackground.Name = "WhiteBackground"
  462. WhiteBackground.Parent = Settings
  463. WhiteBackground.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  464. WhiteBackground.BorderSizePixel = 0
  465. WhiteBackground.Position = UDim2.new(0.0325443782, 0, 0.228070185, 0)
  466. WhiteBackground.Size = UDim2.new(0, 18, 0, 18)
  467.  
  468. FormCheck.Name = "FormCheck"
  469. FormCheck.Parent = Settings
  470. FormCheck.BackgroundColor3 = Color3.new(0.192157, 0.192157, 0.192157)
  471. FormCheck.BorderSizePixel = 0
  472. FormCheck.Position = UDim2.new(0.0325443782, 0, 0.105263159, 0)
  473. FormCheck.Size = UDim2.new(0, 18, 0, 18)
  474.  
  475. Form.Name = "Form"
  476. Form.Parent = Settings
  477. Form.BackgroundColor3 = Color3.new(1, 1, 1)
  478. Form.BackgroundTransparency = 1
  479. Form.Position = UDim2.new(0.0719999969, 0, 0.112999998, 0)
  480. Form.Size = UDim2.new(0, 113, 0, 12)
  481. Form.Font = Enum.Font.SourceSans
  482. Form.Text = "Enable Form Dragging"
  483. Form.TextColor3 = Color3.new(0.815686, 0.835294, 0.901961)
  484. Form.TextSize = 15
  485.  
  486. White.Name = "White"
  487. White.Parent = Settings
  488. White.BackgroundColor3 = Color3.new(1, 1, 1)
  489. White.BackgroundTransparency = 1
  490. White.Position = UDim2.new(0.0591716208, 0, 0.225999996, 0)
  491. White.Size = UDim2.new(0, 106, 0, 18)
  492. White.Font = Enum.Font.SourceSans
  493. White.Text = "White Background"
  494. White.TextColor3 = Color3.new(0.815686, 0.835294, 0.901961)
  495. White.TextSize = 15
  496.  
  497. del.Name = "del"
  498. del.Parent = Settings
  499. del.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  500. del.BorderColor3 = Color3.new(0.356863, 0.388235, 0.470588)
  501. del.Position = UDim2.new(0.0325443782, 0, 0.824561417, 0)
  502. del.Size = UDim2.new(0, 124, 0, 25)
  503. del.Font = Enum.Font.SourceSansLight
  504. del.Text = "Un-Inject GUI"
  505. del.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  506. del.TextSize = 20
  507. del.MouseButton1Down:connect(function()
  508. Main:Destroy()
  509. end)
  510.  
  511.  
  512. Credits.Name = "Credits"
  513. Credits.Parent = Main
  514. Credits.BackgroundColor3 = Color3.new(0.133333, 0.141176, 0.176471)
  515. Credits.BorderSizePixel = 0
  516. Credits.Size = UDim2.new(0, 676, 0, 285)
  517. Credits.Visible = false
  518.  
  519. Outer.Name = "Outer"
  520. Outer.Parent = Credits
  521. Outer.BackgroundColor3 = Color3.new(1, 1, 1)
  522. Outer.Position = UDim2.new(0.0828402266, 0, 0.280701756, 0)
  523. Outer.Size = UDim2.new(0, 126, 0, 125)
  524. Outer.Image = "rbxassetid://2418005428"
  525.  
  526. Discord.Name = "Discord"
  527. Discord.Parent = Outer
  528. Discord.BackgroundColor3 = Color3.new(1, 1, 1)
  529. Discord.BackgroundTransparency = 100
  530. Discord.Position = UDim2.new(-0.206349224, 0, 1.07200003, 0)
  531. Discord.Size = UDim2.new(0, 177, 0, 50)
  532. Discord.Font = Enum.Font.SourceSansItalic
  533. Discord.Text = "Helper: Outer in a bag#0001"
  534. Discord.TextColor3 = Color3.new(1, 0.168627, 0.847059)
  535. Discord.TextSize = 19
  536.  
  537. Alone.Name = "Alone"
  538. Alone.Parent = Credits
  539. Alone.BackgroundColor3 = Color3.new(0, 0, 0)
  540. Alone.BackgroundTransparency = 1
  541. Alone.Position = UDim2.new(0.386094689, 0, 0.280701756, 0)
  542. Alone.Size = UDim2.new(0, 126, 0, 125)
  543. Alone.Image = "rbxassetid://2418247591"
  544.  
  545. Discord_2.Name = "Discord"
  546. Discord_2.Parent = Alone
  547. Discord_2.BackgroundColor3 = Color3.new(1, 1, 1)
  548. Discord_2.BackgroundTransparency = 100
  549. Discord_2.Position = UDim2.new(-0.0317460299, 0, 1.07200003, 0)
  550. Discord_2.Size = UDim2.new(0, 134, 0, 50)
  551. Discord_2.Font = Enum.Font.SourceSansItalic
  552. Discord_2.Text = "Creator: xAlone#9124"
  553. Discord_2.TextColor3 = Color3.new(1, 0.317647, 0)
  554. Discord_2.TextSize = 19
  555.  
  556. ROexploits.Name = "ROexploits"
  557. ROexploits.Parent = Credits
  558. ROexploits.BackgroundColor3 = Color3.new(0, 0, 0)
  559. ROexploits.BorderSizePixel = 0
  560. ROexploits.Position = UDim2.new(0.692307711, 0, 0.280701756, 0)
  561. ROexploits.Size = UDim2.new(0, 126, 0, 125)
  562. ROexploits.Image = "rbxassetid://2418013975"
  563.  
  564. Discord_3.Name = "Discord"
  565. Discord_3.Parent = ROexploits
  566. Discord_3.BackgroundColor3 = Color3.new(1, 1, 1)
  567. Discord_3.BackgroundTransparency = 100
  568. Discord_3.Position = UDim2.new(-0.198412716, 0, 1.07200003, 0)
  569. Discord_3.Size = UDim2.new(0, 176, 0, 50)
  570. Discord_3.Font = Enum.Font.SourceSansItalic
  571. Discord_3.Text = "Helper: [YT] RoExploits#3605"
  572. Discord_3.TextColor3 = Color3.new(0, 0.333333, 1)
  573. Discord_3.TextSize = 19
  574.  
  575. TextLabel.Parent = Credits
  576. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  577. TextLabel.BackgroundTransparency = 100
  578. TextLabel.Position = UDim2.new(0.331360936, 0, 0, 0)
  579. TextLabel.Size = UDim2.new(0, 200, 0, 38)
  580. TextLabel.Font = Enum.Font.SourceSansItalic
  581. TextLabel.Text = "Credits"
  582. TextLabel.TextColor3 = Color3.new(1, 1, 1)
  583. TextLabel.TextSize = 26
  584.  
  585. TabList.Name = "TabList"
  586. TabList.Parent = Main
  587. TabList.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  588. TabList.BorderSizePixel = 0
  589. TabList.Position = UDim2.new(0, 0, 0.882352948, 0)
  590. TabList.Size = UDim2.new(0, 676, 0, 38)
  591.  
  592. FunctionsBTN.Name = "FunctionsBTN"
  593. FunctionsBTN.Parent = TabList
  594. FunctionsBTN.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  595. FunctionsBTN.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  596. FunctionsBTN.Position = UDim2.new(0.289940834, 0, 0.184210539, 0)
  597. FunctionsBTN.Size = UDim2.new(0, 82, 0, 24)
  598. FunctionsBTN.Font = Enum.Font.SourceSansLight
  599. FunctionsBTN.Text = "Functions"
  600. FunctionsBTN.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  601. FunctionsBTN.TextSize = 20
  602. FunctionsBTN.MouseButton1Down:connect(function()
  603. Functions.Visible = true
  604. Settings.Visibe = false
  605. Credits.Visible = false
  606. end)
  607.  
  608. SettingsBTN.Name = "SettingsBTN"
  609. SettingsBTN.Parent = TabList
  610. SettingsBTN.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  611. SettingsBTN.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  612. SettingsBTN.Position = UDim2.new(0.437869817, 0, 0.184210539, 0)
  613. SettingsBTN.Size = UDim2.new(0, 82, 0, 24)
  614. SettingsBTN.Font = Enum.Font.SourceSansLight
  615. SettingsBTN.Text = "Settings"
  616. SettingsBTN.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  617. SettingsBTN.TextSize = 20
  618. SettingsBTN.MouseButton1Down:connect(function()
  619. Functions.Visible = false
  620. Settings.Visibe = true
  621. Credits.Visible = false
  622. end)
  623.  
  624. CreditsBTN_2.Name = "CreditsBTN"
  625. CreditsBTN_2.Parent = TabList
  626. CreditsBTN_2.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  627. CreditsBTN_2.BorderColor3 = Color3.new(0.470588, 0.513726, 0.623529)
  628. CreditsBTN_2.Position = UDim2.new(0.587278128, 0, 0.184210539, 0)
  629. CreditsBTN_2.Size = UDim2.new(0, 82, 0, 24)
  630. CreditsBTN_2.Font = Enum.Font.SourceSansLight
  631. CreditsBTN_2.Text = "Credits"
  632. CreditsBTN_2.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  633. CreditsBTN_2.TextSize = 20
  634. CreditsBTN_2.MouseButton1Down:connect(function()
  635. Functions.Visible = false
  636. Settings.Visibe = false
  637. Credits.Visible = true
  638. end)
  639.  
  640. Title.Name = "Title"
  641. Title.Parent = TabList
  642. Title.BackgroundColor3 = Color3.new(1, 1, 1)
  643. Title.BackgroundTransparency = 1
  644. Title.Position = UDim2.new(0, 0, 0.184210539, 0)
  645. Title.Size = UDim2.new(0, 111, 0, 25)
  646. Title.Font = Enum.Font.SourceSansLight
  647. Title.Text = "SkidParkour V1"
  648. Title.TextColor3 = Color3.new(0.819608, 0.819608, 0.819608)
  649. Title.TextSize = 14
  650.  
  651. Close.Name = "Close"
  652. Close.Parent = Main
  653. Close.BackgroundColor3 = Color3.new(0.0980392, 0.109804, 0.137255)
  654. Close.BorderColor3 = Color3.new(0.215686, 0.231373, 0.286275)
  655. Close.BorderSizePixel = 0
  656. Close.Position = UDim2.new(0.96449703, 0, 0, 0)
  657. Close.Size = UDim2.new(0, 24, 0, 24)
  658. Close.Font = Enum.Font.SourceSansLight
  659. Close.Text = "-"
  660. Close.TextColor3 = Color3.new(0.780392, 0.780392, 0.780392)
  661. Close.TextSize = 24
  662. Close.MouseButton1Down:connect(function()
  663. Main.Visible = false
  664. Open.Visible = true
  665. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement