BonelessHotline

2k GUI 1.0

Jul 16th, 2019
197
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 18.95 KB | None | 0 0
  1. -- Stuff that needs to be added:
  2. -- Custom values
  3. -- Toggleable auto farm
  4. -- More scripts (own ones?)
  5.  
  6. -- Farewell Infortality.
  7. -- Version: 2.82
  8. -- Instances:
  9. local _2kGUI10 = Instance.new("ScreenGui")
  10. local loginframe = Instance.new("Frame")
  11. local loginmenu = Instance.new("Frame")
  12. local username = Instance.new("TextBox")
  13. local password = Instance.new("TextBox")
  14. local loginbutton = Instance.new("TextButton")
  15. local openframe = Instance.new("Frame")
  16. local openbutton = Instance.new("TextButton")
  17. local sidebar = Instance.new("Frame")
  18. local limsimbutton = Instance.new("TextButton")
  19. local limsimframe = Instance.new("Frame")
  20. local autofarmbutton = Instance.new("TextButton")
  21. local autofarmlabel = Instance.new("TextLabel")
  22. local autobuybutton = Instance.new("TextButton")
  23. local autobuylabel = Instance.new("TextLabel")
  24. local infmoneybutton = Instance.new("TextButton")
  25. local infmoneylabel = Instance.new("TextLabel")
  26. local tbd1 = Instance.new("TextButton")
  27. local tbd2 = Instance.new("TextButton")
  28. local tbd3 = Instance.new("TextButton")
  29. local miscbutton = Instance.new("TextButton")
  30. local miscframe = Instance.new("Frame")
  31. local walkspeedbutton = Instance.new("TextButton")
  32. local walkspeedlabel = Instance.new("TextLabel")
  33. local jumppowerbutton = Instance.new("TextButton")
  34. local jumppowerlabel = Instance.new("TextLabel")
  35. local nonfewalkspeedbutton = Instance.new("TextButton")
  36. local nonfewalkspeedlabel = Instance.new("TextLabel")
  37. local MadeByLabel = Instance.new("TextLabel")
  38. local HotlineLabel = Instance.new("TextLabel")
  39. local closebutton = Instance.new("TextButton")
  40. local divider = Instance.new("Frame")
  41. --Properties:
  42. _2kGUI10.Name = "2k GUI 1.0"
  43. _2kGUI10.Parent = game.CoreGui
  44.  
  45. loginframe.Name = "loginframe"
  46. loginframe.Parent = _2kGUI10
  47. loginframe.BackgroundColor3 = Color3.new(1, 1, 1)
  48. loginframe.BackgroundTransparency = 0.20000000298023
  49. loginframe.Position = UDim2.new(0.475825757, 0, 0.48990199, 0)
  50. loginframe.Size = UDim2.new(0, 100, 0, 100)
  51. loginframe.Active = true
  52.  
  53. loginmenu.Name = "loginmenu"
  54. loginmenu.Parent = loginframe
  55. loginmenu.Active = true
  56. loginmenu.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  57. loginmenu.BorderColor3 = Color3.new(0, 0.819608, 1)
  58. loginmenu.Position = UDim2.new(-1.24194169, 0, -0.0465756208, 0)
  59. loginmenu.Size = UDim2.new(0, 348, 0, 108)
  60.  
  61. username.Name = "username"
  62. username.Parent = loginmenu
  63. username.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  64. username.Position = UDim2.new(0.0402298868, 0, 0.129629627, 0)
  65. username.Size = UDim2.new(0, 233, 0, 33)
  66. username.Font = Enum.Font.SourceSans
  67. username.Text = "Username"
  68. username.TextColor3 = Color3.new(1, 1, 1)
  69. username.TextSize = 16
  70.  
  71. password.Name = "password"
  72. password.Parent = loginmenu
  73. password.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  74. password.Position = UDim2.new(0.0402298868, 0, 0.564814806, 0)
  75. password.Size = UDim2.new(0, 233, 0, 33)
  76. password.Font = Enum.Font.SourceSans
  77. password.Text = "Password"
  78. password.TextColor3 = Color3.new(1, 1, 1)
  79. password.TextSize = 16
  80.  
  81. loginbutton.Name = "loginbutton"
  82. loginbutton.Parent = loginmenu
  83. loginbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  84. loginbutton.BorderColor3 = Color3.new(1, 0, 0)
  85. loginbutton.BorderSizePixel = 0
  86. loginbutton.Position = UDim2.new(0.758620739, 0, 0.333333343, 0)
  87. loginbutton.Size = UDim2.new(0, 66, 0, 35)
  88. loginbutton.Font = Enum.Font.SourceSans
  89. loginbutton.Text = "Log In"
  90. loginbutton.TextColor3 = Color3.new(1, 1, 1)
  91. loginbutton.TextSize = 18
  92. -- Log in script
  93. loginbutton.MouseButton1Down:connect(function()
  94. if username.Text == "Hotline" and password.Text == ""
  95.     then
  96.         sidebar.Visible = true
  97.         loginframe.Visible = false 
  98.     else
  99.         print("Fuck you bitch")
  100.     end
  101. end)
  102.  
  103. openframe.Name = "openframe"
  104. openframe.Parent = _2kGUI10
  105. openframe.Active = true
  106. openframe.BackgroundColor3 = Color3.new(1, 1, 1)
  107. openframe.BackgroundTransparency = 1
  108. openframe.Position = UDim2.new(0.475825757, 0, 0.48280099, 0)
  109. openframe.Size = UDim2.new(0, 100, 0, 51)
  110. openframe.Visible = false
  111.  
  112. openbutton.Name = "openbutton"
  113. openbutton.Parent = openframe
  114. openbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  115. openbutton.BorderSizePixel = 0
  116. openbutton.Position = UDim2.new(-9.93999863, 0, 4.03847504, 0)
  117. openbutton.Size = UDim2.new(0, 124, 0, 51)
  118. openbutton.Font = Enum.Font.SourceSans
  119. openbutton.Text = "Open GUI"
  120. openbutton.TextColor3 = Color3.new(0, 0.819608, 1)
  121. openbutton.TextSize = 26
  122. -- Open GUI
  123. openbutton.MouseButton1Down:connect(function()
  124.     openframe.Visible = false
  125.     sidebar.Visible = true
  126. end)
  127.  
  128. sidebar.Name = "sidebar"
  129. sidebar.Parent = _2kGUI10
  130. sidebar.Active = true
  131. sidebar.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  132. sidebar.BorderColor3 = Color3.new(0, 0.819608, 1)
  133. sidebar.Position = UDim2.new(0.127184361, 0, 0.275353044, 0)
  134. sidebar.Size = UDim2.new(0, 545, 0, 364)
  135. sidebar.Visible = false
  136. sidebar.Draggable = true
  137.  
  138. limsimbutton.Name = "limsimbutton"
  139. limsimbutton.Parent = sidebar
  140. limsimbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  141. limsimbutton.BorderSizePixel = 0
  142. limsimbutton.Size = UDim2.new(0, 118, 0, 50)
  143. limsimbutton.Font = Enum.Font.Highway
  144. limsimbutton.Text = "Limited Simulator"
  145. limsimbutton.TextColor3 = Color3.new(1, 1, 1)
  146. limsimbutton.TextSize = 20
  147. limsimbutton.TextWrapped = true
  148. -- Open lim sim menu
  149. limsimbutton.MouseButton1Down:connect(function()
  150.     limsimframe.Visible = true
  151.     miscframe.Visible = false
  152. end)
  153.  
  154. limsimframe.Name = "limsimframe"
  155. limsimframe.Parent = limsimbutton
  156. limsimframe.BackgroundColor3 = Color3.new(1, 1, 1)
  157. limsimframe.BackgroundTransparency = 1
  158. limsimframe.Position = UDim2.new(1.09322035, 0, 0.160000101, 0)
  159. limsimframe.Size = UDim2.new(0, 402, 0, 350)
  160. limsimframe.Visible = false
  161.  
  162. -- Auto farm variable check
  163. autofarmtoggle = false
  164.  
  165. autofarmbutton.Name = "autofarmbutton"
  166. autofarmbutton.Parent = limsimframe
  167. autofarmbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  168. autofarmbutton.BorderColor3 = Color3.new(1, 0, 0)
  169. autofarmbutton.Position = UDim2.new(0.0373134315, 0, 0.0599999875, 0)
  170. autofarmbutton.Size = UDim2.new(0, 21, 0, 21)
  171. autofarmbutton.Font = Enum.Font.SourceSans
  172. autofarmbutton.Text = ""
  173. autofarmbutton.TextColor3 = Color3.new(1, 0, 0)
  174. autofarmbutton.TextSize = 40
  175. -- Auto farm script
  176. autofarmbutton.MouseButton1Down:connect(function()
  177.     if autofarmtoggle == false
  178.     then
  179.         autofarmbutton.Text = "X"
  180.         autofarmbutton.TextColor3 = Color3.new(0, 255, 0)
  181.         autofarmbutton.BorderColor3 = Color3.new(0, 255, 0)
  182.         autofarmtoggle = true
  183.         loadstring(game:HttpGet('https://pastebin.com/raw/JWxPnYK1', true))()
  184.     else
  185.         print("Already toggled you dipshit")
  186.     end
  187. end)
  188.  
  189. autofarmlabel.Name = "autofarmlabel"
  190. autofarmlabel.Parent = autofarmbutton
  191. autofarmlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  192. autofarmlabel.BackgroundTransparency = 1
  193. autofarmlabel.Position = UDim2.new(1.28571415, 0, -0.0952381194, 0)
  194. autofarmlabel.Size = UDim2.new(0, 66, 0, 25)
  195. autofarmlabel.Font = Enum.Font.SourceSans
  196. autofarmlabel.Text = "Auto-Farm"
  197. autofarmlabel.TextColor3 = Color3.new(1, 1, 1)
  198. autofarmlabel.TextSize = 16
  199.  
  200. -- Auto buy variable check
  201. autobuytoggle = false
  202.  
  203. autobuybutton.Name = "autobuybutton"
  204. autobuybutton.Parent = limsimframe
  205. autobuybutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  206. autobuybutton.BorderColor3 = Color3.new(1, 0, 0)
  207. autobuybutton.Position = UDim2.new(0.0373134315, 0, 0.159999996, 0)
  208. autobuybutton.Size = UDim2.new(0, 21, 0, 21)
  209. autobuybutton.Font = Enum.Font.SourceSans
  210. autobuybutton.Text = ""
  211. autobuybutton.TextColor3 = Color3.new(1, 0, 0)
  212. autobuybutton.TextSize = 40
  213. -- Auto buy script
  214. autobuybutton.MouseButton1Down:connect(function()
  215.     if autobuytoggle == false
  216.     then
  217. autobuytoggle = true   
  218. autobuybutton.Text = "X"
  219. autobuybutton.TextColor3 = Color3.new(0, 255, 0)
  220. autobuybutton.BorderColor3 = Color3.new(0, 255, 0)
  221.  
  222.     local send = game.ReplicatedStorage:WaitForChild('Items')
  223.  
  224. game.ReplicatedStorage.Limitteds.ChildAdded:connect(function(c)
  225.      if c:IsA('Folder') then
  226.           local id = c:WaitForChild('AssetID')
  227.           local price = c:WaitForChild('Price')
  228.           if id and price then
  229.                local result
  230.                local succ, err = pcall(function()
  231.                     result = send:InvokeServer(price.Value, id.Value, c.Name)
  232.                end)
  233.                if succ then
  234.                     if result then
  235.                          warn('Successfully bought: ' .. c.Name)
  236.                     else
  237.                          warn('Failed to buy: ' .. c.Name)
  238.                     end
  239.  
  240.                else
  241.                     warn('Ran into an error when trying to buy ' .. c.Name .. ': ' .. err)
  242.                end
  243.           end
  244.      end
  245. end)
  246.  
  247. warn('Auto-buy loaded!')
  248.     else
  249.         print("Already toggled you dipshit")
  250. end
  251. end)
  252.  
  253. autobuylabel.Name = "autobuylabel"
  254. autobuylabel.Parent = autobuybutton
  255. autobuylabel.BackgroundColor3 = Color3.new(1, 1, 1)
  256. autobuylabel.BackgroundTransparency = 1
  257. autobuylabel.Position = UDim2.new(1.19299996, 0, -0.095238097, 0)
  258. autobuylabel.Size = UDim2.new(0, 66, 0, 25)
  259. autobuylabel.Font = Enum.Font.SourceSans
  260. autobuylabel.Text = "Auto-Buy"
  261. autobuylabel.TextColor3 = Color3.new(1, 1, 1)
  262. autobuylabel.TextSize = 16
  263.  
  264. -- Inf. money variable check
  265. infmoneytoggle = false
  266.  
  267. infmoneybutton.Name = "infmoneybutton"
  268. infmoneybutton.Parent = limsimframe
  269. infmoneybutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  270. infmoneybutton.BorderColor3 = Color3.new(1, 0, 0)
  271. infmoneybutton.Position = UDim2.new(0.0373134315, 0, 0.256999999, 0)
  272. infmoneybutton.Size = UDim2.new(0, 21, 0, 21)
  273. infmoneybutton.Font = Enum.Font.SourceSans
  274. infmoneybutton.Text = ""
  275. infmoneybutton.TextColor3 = Color3.new(1, 0, 0)
  276. infmoneybutton.TextSize = 40
  277. infmoneybutton.MouseButton1Down:connect(function()
  278.     if infmoneytoggle == false
  279.     then
  280.         infmoneybutton.Text = "X"
  281.         infmoneybutton.TextColor3 = Color3.new(0, 255, 0)
  282.         infmoneybutton.BorderColor3 = Color3.new(0, 255, 0)
  283.         infmoneytoggle = true
  284.         loadstring(game:HttpGet('https://pastebin.com/raw/PYxgutmA', true))()
  285.     else
  286.         print("Already toggled you dipshit")
  287.     end
  288. end)
  289.  
  290. infmoneylabel.Name = "infmoneylabel"
  291. infmoneylabel.Parent = infmoneybutton
  292. infmoneylabel.BackgroundColor3 = Color3.new(1, 1, 1)
  293. infmoneylabel.BackgroundTransparency = 1
  294. infmoneylabel.Position = UDim2.new(0.790000021, 0, -0.095238097, 0)
  295. infmoneylabel.Size = UDim2.new(0, 66, 0, 25)
  296. infmoneylabel.Font = Enum.Font.SourceSans
  297. infmoneylabel.Text = "Inf. R$"
  298. infmoneylabel.TextColor3 = Color3.new(1, 1, 1)
  299. infmoneylabel.TextSize = 16
  300.  
  301. tbd1.Name = "tbd1"
  302. tbd1.Parent = sidebar
  303. tbd1.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  304. tbd1.BorderSizePixel = 0
  305. tbd1.Position = UDim2.new(0, 0, 0.137362644, 0)
  306. tbd1.Size = UDim2.new(0, 118, 0, 50)
  307. tbd1.Font = Enum.Font.Highway
  308. tbd1.Text = "TBD"
  309. tbd1.TextColor3 = Color3.new(1, 1, 1)
  310. tbd1.TextSize = 20
  311. tbd1.TextWrapped = true
  312.  
  313. tbd2.Name = "tbd2"
  314. tbd2.Parent = sidebar
  315. tbd2.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  316. tbd2.BorderSizePixel = 0
  317. tbd2.Position = UDim2.new(0, 0, 0.274725288, 0)
  318. tbd2.Size = UDim2.new(0, 118, 0, 50)
  319. tbd2.Font = Enum.Font.Highway
  320. tbd2.Text = "TBD"
  321. tbd2.TextColor3 = Color3.new(1, 1, 1)
  322. tbd2.TextSize = 20
  323.  
  324. tbd3.Name = "tbd3"
  325. tbd3.Parent = sidebar
  326. tbd3.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  327. tbd3.BorderSizePixel = 0
  328. tbd3.Position = UDim2.new(0, 0, 0.412087917, 0)
  329. tbd3.Size = UDim2.new(0, 118, 0, 50)
  330. tbd3.Font = Enum.Font.Highway
  331. tbd3.Text = "TBD"
  332. tbd3.TextColor3 = Color3.new(1, 1, 1)
  333. tbd3.TextSize = 20
  334.  
  335. miscbutton.Name = "miscbutton"
  336. miscbutton.Parent = sidebar
  337. miscbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  338. miscbutton.BorderSizePixel = 0
  339. miscbutton.Position = UDim2.new(0, 0, 0.549450576, 0)
  340. miscbutton.Size = UDim2.new(0, 118, 0, 50)
  341. miscbutton.Font = Enum.Font.Highway
  342. miscbutton.Text = "Misc Scripts"
  343. miscbutton.TextColor3 = Color3.new(1, 1, 1)
  344. miscbutton.TextSize = 20
  345. -- Open misc menu
  346. miscbutton.MouseButton1Down:connect(function()
  347.     miscframe.Visible = true
  348.     limsimframe.Visible = false
  349. end)
  350.  
  351. miscframe.Name = "miscframe"
  352. miscframe.Parent = miscbutton
  353. miscframe.Active = true
  354. miscframe.BackgroundColor3 = Color3.new(1, 1, 1)
  355. miscframe.BackgroundTransparency = 1
  356. miscframe.Position = UDim2.new(1.09322035, 0, -3.83999991, 0)
  357. miscframe.Size = UDim2.new(0, 402, 0, 350)
  358. miscframe.Visible = false
  359.  
  360. -- Walkspeed variable check nigga
  361. walkspeedtoggle = false
  362.  
  363. walkspeedbutton.Name = "walkspeedbutton"
  364. walkspeedbutton.Parent = miscframe
  365. walkspeedbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  366. walkspeedbutton.BorderColor3 = Color3.new(1, 0, 0)
  367. walkspeedbutton.Position = UDim2.new(0.0373134315, 0, 0.0600000061, 0)
  368. walkspeedbutton.Size = UDim2.new(0, 21, 0, 21)
  369. walkspeedbutton.Font = Enum.Font.SourceSans
  370. walkspeedbutton.Text = ""
  371. walkspeedbutton.TextColor3 = Color3.new(1, 0, 0)
  372. walkspeedbutton.TextSize = 40
  373. walkspeedbutton.MouseButton1Down:connect(function()
  374.     if walkspeedtoggle == false
  375.     then
  376.         walkspeedbutton.Text = "X"
  377.         walkspeedbutton.TextColor3 = Color3.new(0, 255, 0)
  378.         walkspeedbutton.BorderColor3 = Color3.new(0, 255, 0)
  379.         walkspeedtoggle = true
  380.         loadstring(game:HttpGet('https://pastebin.com/raw/RxNPdx3q', true))()
  381.     else
  382.         print("Already toggled you dipshit")
  383.     end
  384. end)
  385.  
  386. walkspeedlabel.Name = "walkspeedlabel"
  387. walkspeedlabel.Parent = walkspeedbutton
  388. walkspeedlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  389. walkspeedlabel.BackgroundTransparency = 1
  390. walkspeedlabel.Position = UDim2.new(1.58958793, 0, -0.136666432, 0)
  391. walkspeedlabel.Size = UDim2.new(0, 72, 0, 25)
  392. walkspeedlabel.Font = Enum.Font.SourceSans
  393. walkspeedlabel.Text = "FE Walkspeed"
  394. walkspeedlabel.TextColor3 = Color3.new(1, 1, 1)
  395. walkspeedlabel.TextSize = 16
  396.  
  397. -- Jump power variable check nigga
  398. jumppowertoggle = false
  399.  
  400. jumppowerbutton.Name = "jumppowerbutton"
  401. jumppowerbutton.Parent = miscframe
  402. jumppowerbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  403. jumppowerbutton.BorderColor3 = Color3.new(1, 0, 0)
  404. jumppowerbutton.Position = UDim2.new(0.0373134315, 0, 0.160000011, 0)
  405. jumppowerbutton.Size = UDim2.new(0, 21, 0, 21)
  406. jumppowerbutton.Font = Enum.Font.SourceSans
  407. jumppowerbutton.Text = ""
  408. jumppowerbutton.TextColor3 = Color3.new(1, 0, 0)
  409. jumppowerbutton.TextSize = 40
  410. -- Jump power script
  411. jumppowerbutton.MouseButton1Down:connect(function()
  412.     if jumppowertoggle == false
  413.     then
  414.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 100
  415.         jumppowerbutton.Text = "X"
  416.         jumppowerbutton.TextColor3 = Color3.new(0, 255, 0)
  417.         jumppowerbutton.BorderColor3 = Color3.new(0, 255, 0)
  418.         jumppowertoggle = true
  419.     else
  420.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  421.         jumppowerbutton.Text = ""
  422.         jumppowerbutton.BorderColor3 = Color3.new(255, 0, 0)
  423.         jumppowertoggle = false
  424.     end
  425. end)
  426.  
  427. jumppowerlabel.Name = "jumppowerlabel"
  428. jumppowerlabel.Parent = jumppowerbutton
  429. jumppowerlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  430. jumppowerlabel.BackgroundTransparency = 1
  431. jumppowerlabel.Position = UDim2.new(1.58958817, 0, -0.136666775, 0)
  432. jumppowerlabel.Size = UDim2.new(0, 66, 0, 25)
  433. jumppowerlabel.Font = Enum.Font.SourceSans
  434. jumppowerlabel.Text = "Jump Power"
  435. jumppowerlabel.TextColor3 = Color3.new(1, 1, 1)
  436. jumppowerlabel.TextSize = 16
  437.  
  438. -- Non FE walkspeed variable check
  439. nonfewalkspeedtoggle = false
  440.  
  441. nonfewalkspeedbutton.Name = "nonfewalkspeedbutton"
  442. nonfewalkspeedbutton.Parent = miscframe
  443. nonfewalkspeedbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  444. nonfewalkspeedbutton.BorderColor3 = Color3.new(1, 0, 0)
  445. nonfewalkspeedbutton.Position = UDim2.new(0.0373134315, 0, 0.257999986, 0)
  446. nonfewalkspeedbutton.Size = UDim2.new(0, 21, 0, 21)
  447. nonfewalkspeedbutton.Font = Enum.Font.SourceSans
  448. nonfewalkspeedbutton.Text = ""
  449. nonfewalkspeedbutton.TextColor3 = Color3.new(1, 0, 0)
  450. nonfewalkspeedbutton.TextSize = 40
  451. -- Non FE walkspeed script
  452. nonfewalkspeedbutton.MouseButton1Down:connect(function()
  453.     if nonfewalkspeedtoggle == false
  454.     then
  455.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 100
  456.         nonfewalkspeedbutton.Text = "X"
  457.         nonfewalkspeedbutton.TextColor3 = Color3.new(0, 255, 0)
  458.         nonfewalkspeedbutton.BorderColor3 = Color3.new(0, 255, 0)
  459.         nonfewalkspeedtoggle = true
  460.     else
  461.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  462.         nonfewalkspeedbutton.Text = ""
  463.         nonfewalkspeedbutton.TextColor3 = Color3.new(255, 0, 0)
  464.         nonfewalkspeedbutton.BorderColor3 = Color3.new(255, 0, 0)
  465.         nonfewalkspeedtoggle = false
  466.     end
  467. end)
  468.  
  469. nonfewalkspeedlabel.Name = "nonfewalkspeedlabel"
  470. nonfewalkspeedlabel.Parent = nonfewalkspeedbutton
  471. nonfewalkspeedlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  472. nonfewalkspeedlabel.BackgroundTransparency = 1
  473. nonfewalkspeedlabel.Position = UDim2.new(1.3038739, 0, -0.136666775, 0)
  474. nonfewalkspeedlabel.Size = UDim2.new(0, 66, 0, 25)
  475. nonfewalkspeedlabel.Font = Enum.Font.SourceSans
  476. nonfewalkspeedlabel.Text = "Walkspeed"
  477. nonfewalkspeedlabel.TextColor3 = Color3.new(1, 1, 1)
  478. nonfewalkspeedlabel.TextSize = 16
  479.  
  480. MadeByLabel.Name = "MadeByLabel"
  481. MadeByLabel.Parent = sidebar
  482. MadeByLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  483. MadeByLabel.BackgroundTransparency = 1
  484. MadeByLabel.Position = UDim2.new(0, 0, 0.832417607, 0)
  485. MadeByLabel.Size = UDim2.new(0, 119, 0, 28)
  486. MadeByLabel.Font = Enum.Font.SourceSans
  487. MadeByLabel.Text = "GUI Made By"
  488. MadeByLabel.TextColor3 = Color3.new(1, 1, 1)
  489. MadeByLabel.TextSize = 14
  490.  
  491. HotlineLabel.Name = "HotlineLabel"
  492. HotlineLabel.Parent = sidebar
  493. HotlineLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  494. HotlineLabel.BackgroundTransparency = 1
  495. HotlineLabel.Position = UDim2.new(-0.00847457629, 0, 0.870879173, 0)
  496. HotlineLabel.Size = UDim2.new(0, 119, 0, 41)
  497. HotlineLabel.Font = Enum.Font.SourceSans
  498. HotlineLabel.Text = "Hotline#0339"
  499. HotlineLabel.TextColor3 = Color3.new(0, 0.819608, 1)
  500. HotlineLabel.TextSize = 20
  501. -- Label color changing script
  502. loginbutton.MouseButton1Down:connect(function()
  503. HotlineLabel.TextColor3 = Color3.new(0,204,255)
  504. wait(.1)
  505. HotlineLabel.TextColor3 = Color3.new(0,255,0)
  506. wait(.1)
  507. HotlineLabel.TextColor3 = Color3.new(255,255,0)
  508. wait(.1)
  509. HotlineLabel.TextColor3 = Color3.new(255,0,0)
  510. wait(.1)
  511. HotlineLabel.TextColor3 = Color3.new(153,0,153)
  512. wait(.1)
  513. HotlineLabel.TextColor3 = Color3.new(0,0,255)
  514. wait(.1)
  515. HotlineLabel.TextColor3 = Color3.new(0,209,255)
  516. end)
  517.  
  518. closebutton.Name = "closebutton"
  519. closebutton.Parent = sidebar
  520. closebutton.BackgroundColor3 = Color3.new(1, 1, 1)
  521. closebutton.BackgroundTransparency = 1
  522. closebutton.Position = UDim2.new(0.942123353, 0, -4.19197512e-08, 0)
  523. closebutton.Size = UDim2.new(0, 31, 0, 31)
  524. closebutton.Font = Enum.Font.GothamBlack
  525. closebutton.Text = "X"
  526. closebutton.TextColor3 = Color3.new(1, 1, 1)
  527. closebutton.TextSize = 16
  528. -- Close GUI
  529. closebutton.MouseButton1Down:connect(function()
  530.     sidebar.Visible = false
  531.     openframe.Visible = true
  532. end)
  533.  
  534. divider.Name = "divider"
  535. divider.Parent = sidebar
  536. divider.BackgroundColor3 = Color3.new(0, 0.819608, 1)
  537. divider.BorderSizePixel = 0
  538. divider.Position = UDim2.new(0.216513753, 0, 0, 0)
  539. divider.Size = UDim2.new(0, 1, 0, 364)
  540. -- Scripts:
Add Comment
Please, Sign In to add comment