BonelessHotline

2k GUI 1.2

Aug 23rd, 2019
182
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 31.71 KB | None | 0 0
  1. -- Stuff that needs to be added:
  2.  
  3. -- Animated intro
  4. -- Auto buy broken
  5. -- More scripts
  6.  
  7. -- Farewell Infortality.
  8. -- Version: 2.82
  9. -- Instances:
  10. local _2kGUI11 = Instance.new("ScreenGui")
  11. local loginframe = Instance.new("Frame")
  12. local loginmenu = Instance.new("Frame")
  13. local username = Instance.new("TextBox")
  14. local password = Instance.new("TextBox")
  15. -- new
  16. local loginbutton = Instance.new("TextButton")
  17. local changelogbutton = Instance.new("TextButton")
  18. local changelogframe = Instance.new("Frame")
  19. local versionlabel = Instance.new("TextLabel")
  20. local change1 = Instance.new("TextLabel")
  21. local change2 = Instance.new("TextLabel")
  22. -- new
  23. local openframe = Instance.new("Frame")
  24. local openbutton = Instance.new("TextButton")
  25. local sidebar = Instance.new("Frame")
  26. local limsimbutton = Instance.new("TextButton")
  27. local limsimframe = Instance.new("Frame")
  28. local autofarmbutton = Instance.new("TextButton")
  29. local autofarmlabel = Instance.new("TextLabel")
  30. local autobuybutton = Instance.new("TextButton")
  31. local autobuylabel = Instance.new("TextLabel")
  32. local infmoneybutton = Instance.new("TextButton")
  33. local infmoneylabel = Instance.new("TextLabel")
  34. local tbd1 = Instance.new("TextButton")
  35. local tbd2 = Instance.new("TextButton")
  36. local tbd3 = Instance.new("TextButton")
  37. local miscbutton = Instance.new("TextButton")
  38. local miscframe = Instance.new("Frame")
  39. local walkspeedbutton = Instance.new("TextButton")
  40. local walkspeedlabel = Instance.new("TextLabel")
  41. local jumppowerbutton = Instance.new("TextButton")
  42. local jumppowerlabel = Instance.new("TextLabel")
  43. local nonfewalkspeedbutton = Instance.new("TextButton")
  44. local nonfewalkspeedlabel = Instance.new("TextLabel")
  45. -- new
  46. local valuebutton = Instance.new("TextButton")
  47. local valueframe = Instance.new("Frame")
  48. local valuewalkspeedlabel = Instance.new("TextLabel")
  49. local valuewalkspeedbox = Instance.new("TextBox")
  50. local valuejumppowerlabel = Instance.new("TextLabel")
  51. local valuejumppowerbox = Instance.new("TextBox")
  52. local applybutton = Instance.new("TextButton")
  53. -- new
  54. local MadeByLabel = Instance.new("TextLabel")
  55. local HotlineLabel = Instance.new("TextLabel")
  56. local closebutton = Instance.new("TextButton")
  57. local divider = Instance.new("Frame")
  58. --Properties:
  59. _2kGUI11.Name = "2k GUI 1.1"
  60. _2kGUI11.Parent = game.CoreGui
  61.  
  62. loginframe.Name = "loginframe"
  63. loginframe.Parent = _2kGUI11
  64. loginframe.BackgroundColor3 = Color3.new(1, 1, 1)
  65. loginframe.BackgroundTransparency = 0.20000000298023
  66. loginframe.Position = UDim2.new(0.475825757, 0, 0.48990199, 0)
  67. loginframe.Size = UDim2.new(0, 100, 0, 100)
  68. loginframe.Active = true
  69.  
  70. loginmenu.Name = "loginmenu"
  71. loginmenu.Parent = loginframe
  72. loginmenu.Active = true
  73. loginmenu.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  74. loginmenu.BorderColor3 = Color3.new(0, 0.819608, 1)
  75. loginmenu.Position = UDim2.new(-1.24194169, 0, -0.0465756208, 0)
  76. loginmenu.Size = UDim2.new(0, 348, 0, 108)
  77.  
  78. username.Name = "username"
  79. username.Parent = loginmenu
  80. username.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  81. username.Position = UDim2.new(0.0402298868, 0, 0.129629627, 0)
  82. username.Size = UDim2.new(0, 233, 0, 33)
  83. username.Font = Enum.Font.SourceSans
  84. username.Text = "Username"
  85. username.TextColor3 = Color3.new(1, 1, 1)
  86. username.TextSize = 16
  87.  
  88. password.Name = "password"
  89. password.Parent = loginmenu
  90. password.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  91. password.Position = UDim2.new(0.0402298868, 0, 0.564814806, 0)
  92. password.Size = UDim2.new(0, 233, 0, 33)
  93. password.Font = Enum.Font.SourceSans
  94. password.Text = "Password"
  95. password.TextColor3 = Color3.new(1, 1, 1)
  96. password.TextSize = 16
  97.  
  98. loginbutton.Name = "loginbutton"
  99. loginbutton.Parent = loginmenu
  100. loginbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  101. loginbutton.BorderColor3 = Color3.new(1, 0, 0)
  102. loginbutton.BorderSizePixel = 0
  103. loginbutton.Position = UDim2.new(0.758620739, 0, 0.333333343, 0)
  104. loginbutton.Size = UDim2.new(0, 66, 0, 35)
  105. loginbutton.Font = Enum.Font.SourceSans
  106. loginbutton.Text = "Log In"
  107. loginbutton.TextColor3 = Color3.new(1, 1, 1)
  108. loginbutton.TextSize = 18
  109. -- Log in script
  110. loginbutton.MouseButton1Down:connect(function()
  111. if username.Text == "Hotline" and password.Text == ""
  112.     then
  113.         sidebar.Visible = true
  114.         loginframe.Visible = false 
  115.     else
  116.         print("Fuck you bitch")
  117.     end
  118. end)
  119.  
  120. changelogbutton.Name = "changelogbutton"
  121. changelogbutton.Parent = loginmenu
  122. changelogbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  123. changelogbutton.BorderColor3 = Color3.new(0, 0.819608, 1)
  124. changelogbutton.BorderSizePixel = 0
  125. changelogbutton.Position = UDim2.new(0.388000011, 0, 1.00999999, 0)
  126. changelogbutton.Size = UDim2.new(0, 84, 0, 22)
  127. changelogbutton.Font = Enum.Font.SourceSans
  128. changelogbutton.Text = "Changelog"
  129. changelogbutton.TextColor3 = Color3.new(0, 0.819608, 1)
  130. changelogbutton.TextSize = 16
  131. changelogtoggled = false
  132. -- Changelog button script
  133. changelogbutton.MouseButton1Down:connect(function()
  134.     if changelogtoggled == false then
  135.         changelogframe.Visible = true
  136.         changelogtoggled = true
  137.     else
  138.         changelogframe.Visible = false
  139.         changelogtoggled = false
  140.     end
  141. end)
  142.  
  143. changelogframe.Name = "changelogframe"
  144. changelogframe.Parent = changelogbutton
  145. changelogframe.Active = true
  146. changelogframe.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  147. changelogframe.BorderColor3 = Color3.new(0, 0.819608, 1)
  148. changelogframe.Position = UDim2.new(-0.880952656, 0, -10.363636, 0)
  149. changelogframe.Size = UDim2.new(0, 232, 0, 106)
  150. changelogframe.Visible = false
  151.  
  152. versionlabel.Name = "versionlabel"
  153. versionlabel.Parent = changelogframe
  154. versionlabel.Active = true
  155. versionlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  156. versionlabel.BackgroundTransparency = 1
  157. versionlabel.BorderSizePixel = 0
  158. versionlabel.Position = UDim2.new(0.310344815, 0, -0.0566037744, 0)
  159. versionlabel.Size = UDim2.new(0, 89, 0, 41)
  160. versionlabel.Font = Enum.Font.SourceSans
  161. versionlabel.Text = "Current ver. 1.2"
  162. versionlabel.TextColor3 = Color3.new(1, 1, 1)
  163. versionlabel.TextSize = 16
  164.  
  165. change1.Name = "change1"
  166. change1.Parent = changelogframe
  167. change1.Active = true
  168. change1.BackgroundColor3 = Color3.new(1, 1, 1)
  169. change1.BackgroundTransparency = 1
  170. change1.BorderSizePixel = 0
  171. change1.Position = UDim2.new(0.185344845, 0, 0.113207549, 0)
  172. change1.Size = UDim2.new(0, 147, 0, 50)
  173. change1.Font = Enum.Font.SourceSans
  174. change1.Text = "+ Added changelog window"
  175. change1.TextColor3 = Color3.new(1, 1, 1)
  176. change1.TextSize = 14
  177. change1.TextWrapped = true
  178. change1.TextXAlignment = Enum.TextXAlignment.Left
  179.  
  180. change2.Name = "change2"
  181. change2.Parent = changelogframe
  182. change2.Active = true
  183. change2.BackgroundColor3 = Color3.new(1, 1, 1)
  184. change2.BackgroundTransparency = 1
  185. change2.BorderSizePixel = 0
  186. change2.Position = UDim2.new(0.185344845, 0, 0.264150947, 0)
  187. change2.Size = UDim2.new(0, 147, 0, 50)
  188. change2.Font = Enum.Font.SourceSans
  189. change2.Text = "+ Custom misc values"
  190. change2.TextColor3 = Color3.new(1, 1, 1)
  191. change2.TextSize = 14
  192. change2.TextWrapped = true
  193. change2.TextXAlignment = Enum.TextXAlignment.Left
  194.  
  195. openframe.Name = "openframe"
  196. openframe.Parent = _2kGUI11
  197. openframe.Active = true
  198. openframe.BackgroundColor3 = Color3.new(1, 1, 1)
  199. openframe.BackgroundTransparency = 1
  200. openframe.Position = UDim2.new(0.475825757, 0, 0.48280099, 0)
  201. openframe.Size = UDim2.new(0, 100, 0, 51)
  202. openframe.Visible = false
  203.  
  204. openbutton.Name = "openbutton"
  205. openbutton.Parent = openframe
  206. openbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  207. openbutton.BorderSizePixel = 0
  208. openbutton.Position = UDim2.new(-9.93999863, 0, 4.03847504, 0)
  209. openbutton.Size = UDim2.new(0, 124, 0, 51)
  210. openbutton.Font = Enum.Font.SourceSans
  211. openbutton.Text = "Open GUI"
  212. openbutton.TextColor3 = Color3.new(0, 0.819608, 1)
  213. openbutton.TextSize = 26
  214. openbutton.Draggable = true
  215. -- Open GUI
  216. openbutton.MouseButton1Up:connect(function()
  217.     openframe.Visible = false
  218.     sidebar.Visible = true
  219. end)
  220.  
  221. sidebar.Name = "sidebar"
  222. sidebar.Parent = _2kGUI11
  223. sidebar.Active = true
  224. sidebar.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  225. sidebar.BorderColor3 = Color3.new(0, 0.819608, 1)
  226. sidebar.Position = UDim2.new(0.127184361, 0, 0.275353044, 0)
  227. sidebar.Size = UDim2.new(0, 545, 0, 364)
  228. sidebar.Visible = false
  229. sidebar.Draggable = true
  230.  
  231. limsimbutton.Name = "limsimbutton"
  232. limsimbutton.Parent = sidebar
  233. limsimbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  234. limsimbutton.BorderSizePixel = 0
  235. limsimbutton.Size = UDim2.new(0, 118, 0, 50)
  236. limsimbutton.Font = Enum.Font.Highway
  237. limsimbutton.Text = "Limited Simulator"
  238. limsimbutton.TextColor3 = Color3.new(1, 1, 1)
  239. limsimbutton.TextSize = 20
  240. limsimbutton.TextWrapped = true
  241. -- Open lim sim menu
  242. limsimbutton.MouseButton1Down:connect(function()
  243.     limsimframe.Visible = true
  244.     miscframe.Visible = false
  245. end)
  246.  
  247. limsimframe.Name = "limsimframe"
  248. limsimframe.Parent = limsimbutton
  249. limsimframe.BackgroundColor3 = Color3.new(1, 1, 1)
  250. limsimframe.BackgroundTransparency = 1
  251. limsimframe.Position = UDim2.new(1.09322035, 0, 0.160000101, 0)
  252. limsimframe.Size = UDim2.new(0, 402, 0, 350)
  253. limsimframe.Visible = true
  254.  
  255. -- Auto farm variable check
  256. autofarmtoggle = false
  257. local Bot_Names = "BobDavidMattPeterJackieSamDeanNoobRickCarlGlennMaggieBethSunnyTyreeseMerleCarolAbrahamMorganDaryl"
  258. local Check_Bypass = "Pastel Rainbow Shaggy Dominus Venari Decklace The Wanwood Crown ): Red Grind ): Euro 180 Teal Sparkle Time Fedora Red Sparkle Time Fedora Red Tango Green Sparkle Time Fedora Blackvalk The Kleos Aphthiton Rainbow Shaggy Midnight Blue Sparkle Time Fedora Lord of the Federation Dark Knight Wanwood Crown Antenna Antlers The Kleos Aphthiton Merely's ROBLOX Tablet Domino Crown"
  259. local TextLabel = game.Players.LocalPlayer.PlayerGui.Version.Frame.TextLabel
  260. local function Log(Text)
  261.     TextLabel.Text = Text
  262. end
  263. local BuyArgs
  264. local SellArgs
  265. local Sell_Price
  266.  
  267. autofarmbutton.Name = "autofarmbutton"
  268. autofarmbutton.Parent = limsimframe
  269. autofarmbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  270. autofarmbutton.BorderColor3 = Color3.new(1, 0, 0)
  271. autofarmbutton.Position = UDim2.new(0.0373134315, 0, 0.0599999875, 0)
  272. autofarmbutton.Size = UDim2.new(0, 21, 0, 21)
  273. autofarmbutton.Font = Enum.Font.SourceSans
  274. autofarmbutton.Text = ""
  275. autofarmbutton.TextColor3 = Color3.new(1, 0, 0)
  276. autofarmbutton.TextSize = 40
  277. -- Auto farm script
  278. autofarmbutton.MouseButton1Down:connect(function()
  279.     if autofarmtoggle == false
  280.     then
  281.         autofarmtoggle = true
  282.         autofarmbutton.BorderColor3 = Color3.new(0, 255, 0)
  283. _G.Active = true
  284.  
  285. local function Main()
  286.     for i,Limited in pairs (game.ReplicatedStorage.Limitteds:GetChildren()) do
  287.         for i,Selling in pairs (Limited.Privates:GetChildren()) do
  288.             if Selling then
  289.                 if string.find(Bot_Names, Selling.Name) and Limited.RAP.Value > 0 and game.Players.LocalPlayer.Robux.Value > Selling.Price.Value then
  290.                     if Selling.Price.Value <= Limited.RAP.Value - 30000 or string.find(Check_Bypass, Limited.Name) then
  291.                         BuyArgs = {
  292.                             [1] = Selling.Price.Value,
  293.                             [2] = Selling.Serial.Value,
  294.                             [3] = Limited.Name,
  295.                             [4] = Selling.Name,
  296.                         }
  297.                         Log("Buying " .. BuyArgs[3] .. " - ID: " .. BuyArgs[2] .. " - Cost: " .. BuyArgs[1])
  298.                         game.ReplicatedStorage["PrivateSale"]:InvokeServer(unpack(BuyArgs))
  299.                         if Limited.Name == "Dominus Astra" then
  300.                             Sell_Price = 2400000
  301.                         elseif Limited.Name == "Dominus Venari" then
  302.                             Sell_Price = 10000000
  303.                         elseif Limited.Name == "Dominus Infernus" then
  304.                             Sell_Price = 3750000
  305.                         elseif Limited.Name == "Dominus Frigidus" then
  306.                             Sell_Price = 5000000
  307.                         elseif Limited.Name == "Dominus Empyreus" then
  308.                             Sell_Price = 6500000
  309.                         elseif Limited.Name == "Rainbow Shaggy" then
  310.                             Sell_Price = 3500000
  311.                         elseif Limited.Name == "Lord of the Federation" then
  312.                             Sell_Price = 1100000
  313.                         elseif Limited.Name == "Duke of the Federation" then
  314.                             Sell_Price = 680000
  315.                         elseif Limited.Name == "Immortal Sword: The Piece Maker" then
  316.                             Sell_Price = 500000
  317.                         elseif Limited.Name == "Darkheart" then
  318.                             Sell_Price = 380000
  319.                         elseif Limited.Name == "The Dusekkar" then
  320.                             Sell_Price = 1300000
  321.                         elseif Limited.Name == "Dominus Rex" then
  322.                             Sell_Price = 440000
  323.                         elseif Limited.Name == "Dark Knight Helmet" then
  324.                             Sell_Price = 2000000
  325.                         elseif Limited.Name == "Midnight Blue Sparkle Time Fedora" then
  326.                             Sell_Price = 850000
  327.                         elseif Limited.Name == "Wanwood Crown" then
  328.                             Sell_Price = 1900000
  329.                         elseif Limited.Name == "Antenna Antlers" then
  330.                             Sell_Price = 200000
  331.                         elseif Limited.Name == "Merely's ROBLOX Tablet" then
  332.                             Sell_Price = 1000000
  333.                         elseif Limited.Name == "Rukiryo's ROBLOX Tablet" then
  334.                             Sell_Price = 1000000
  335.                         elseif Limited.Name == "The Kleos Aphthiton" then
  336.                             Sell_Price = 1600000
  337.                         elseif Limited.Name == "Domino Crown" then
  338.                             Sell_Price = 2800000
  339.                         elseif Limited.Name == "Cat Eye Infantry Helm" then
  340.                             Sell_Price = 2500000
  341.                         elseif Limited.Name == "Blackvalk" then
  342.                             Sell_Price = 600000
  343.                         elseif Limited.Name == "Dominus Aureus" then
  344.                             Sell_Price = 550000
  345.                         elseif Limited.Name == "Bling $$ Necklace" then
  346.                             Sell_Price = 425000
  347.                         elseif Limited.Name == "Black Iron Crown of Pwnage" then
  348.                             Sell_Price = 4000000
  349.                         elseif Limited.Name == "Green Sparkle Time Fedora" then
  350.                             Sell_Price = 925000
  351.                         elseif Limited.Name == "Red Sparkle Time Fedora" then
  352.                             Sell_Price = 1675000
  353.                         elseif Limited.Name == "Red Tango" then
  354.                             Sell_Price = 450000
  355.                         elseif Limited.Name == "Teal Sparkle Time Fedora" then
  356.                             Sell_Price = 450000
  357.                         elseif Limited.Name == "Purple Sparkle Time Fedora" then
  358.                             Sell_Price = 715000
  359.                         elseif Limited.Name == "): Euro 180" then
  360.                             Sell_Price = 650000
  361.                         elseif Limited.Name == "): Red Grind" then
  362.                             Sell_Price = 500000
  363.                         elseif Limited.Name == "Sparkletime Valkyrie" then
  364.                             Sell_Price = 450000
  365.                         elseif Limited.Name == "Eerie Pumpkin Head" then
  366.                             Sell_Price = 950000
  367.                         elseif Limited.Name == "Black Iron Domino Crown of Interns" then
  368.                             Sell_Price = 2400000
  369.                         elseif Limited.Name == "The Wanwood Crown" then
  370.                             Sell_Price = 2000000
  371.                         elseif Limited.Name == "Sparkle Time Fedora" then
  372.                             Sell_Price = 195000
  373.                         elseif Limited.Name == "Decklace" then
  374.                             Sell_Price = 350000
  375.                         elseif Limited.Name == "Pastel Rainbow Shaggy" then
  376.                             Sell_Price = 170000
  377.                         else
  378.                             Sell_Price = math.floor((Limited.RAP.Value * 1.1) + 0.5)
  379.                         end
  380.                         SellArgs = {
  381.                             [1] = Sell_Price,
  382.                             [2] = {
  383.                                 [1] = BuyArgs[2],
  384.                             },
  385.                             [3] = Limited.Name,
  386.                         }
  387.                         Log("Selling " .. SellArgs[3] .. " - ID: " .. SellArgs[2][1] .. " - Price: " .. SellArgs[1])
  388.                         game.ReplicatedStorage["Sell_Item"]:InvokeServer(unpack(SellArgs))
  389.                     end
  390.                 end
  391.             end
  392.         end
  393.     end
  394. end
  395.  
  396. repeat
  397.     Main()
  398.     Log("Process ended, starting again in 7 seconds!")
  399.     wait(7)
  400.     for _,Message in pairs (game.Players.LocalPlayer.Messages:GetChildren()) do
  401.         Message:Destroy()
  402.     end
  403. until
  404.     _G.Active == false
  405.    
  406. Log("Process Destroyed")
  407. else
  408.         autofarmtoggle = false
  409.         autofarmbutton.BorderColor3 = Color3.new(255, 0, 0)
  410.         _G.Active = false
  411.     end
  412. end)
  413.  
  414. autofarmlabel.Name = "autofarmlabel"
  415. autofarmlabel.Parent = autofarmbutton
  416. autofarmlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  417. autofarmlabel.BackgroundTransparency = 1
  418. autofarmlabel.Position = UDim2.new(1.28571415, 0, -0.0952381194, 0)
  419. autofarmlabel.Size = UDim2.new(0, 66, 0, 25)
  420. autofarmlabel.Font = Enum.Font.SourceSans
  421. autofarmlabel.Text = "Auto-Farm"
  422. autofarmlabel.TextColor3 = Color3.new(1, 1, 1)
  423. autofarmlabel.TextSize = 16
  424.  
  425. -- Auto buy variable check
  426. autobuytoggle = false
  427.  
  428. autobuybutton.Name = "autobuybutton"
  429. autobuybutton.Parent = limsimframe
  430. autobuybutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  431. autobuybutton.BorderColor3 = Color3.new(1, 0, 0)
  432. autobuybutton.Position = UDim2.new(0.0373134315, 0, 0.159999996, 0)
  433. autobuybutton.Size = UDim2.new(0, 21, 0, 21)
  434. autobuybutton.Font = Enum.Font.SourceSans
  435. autobuybutton.Text = ""
  436. autobuybutton.TextColor3 = Color3.new(1, 0, 0)
  437. autobuybutton.TextSize = 40
  438. -- Auto buy script
  439. autobuybutton.MouseButton1Down:connect(function()
  440.     if autobuytoggle == false
  441.     then
  442. autobuytoggle = true   
  443. autobuybutton.Text = ""
  444. autobuybutton.TextColor3 = Color3.new(0, 255, 0)
  445. autobuybutton.BorderColor3 = Color3.new(0, 255, 0)
  446.  
  447.     local send = game.ReplicatedStorage:WaitForChild('Items')
  448.  
  449. game.ReplicatedStorage.Limitteds.ChildAdded:connect(function(c)
  450.      if c:IsA('Folder') then
  451.           local id = c:WaitForChild('AssetID')
  452.           local price = c:WaitForChild('Price')
  453.           if id and price then
  454.                local result
  455.                local succ, err = pcall(function()
  456.                     result = send:InvokeServer(price.Value, id.Value, c.Name)
  457.                end)
  458.                if succ then
  459.                     if result then
  460.                          warn('Successfully bought: ' .. c.Name)
  461.                     else
  462.                          warn('Failed to buy: ' .. c.Name)
  463.                     end
  464.  
  465.                else
  466.                     warn('Ran into an error when trying to buy ' .. c.Name .. ': ' .. err)
  467.                end
  468.           end
  469.      end
  470. end)
  471.  
  472. warn('Auto-buy loaded!')
  473.     else
  474.         print("Already toggled you dipshit")
  475. end
  476. end)
  477.  
  478. autobuylabel.Name = "autobuylabel"
  479. autobuylabel.Parent = autobuybutton
  480. autobuylabel.BackgroundColor3 = Color3.new(1, 1, 1)
  481. autobuylabel.BackgroundTransparency = 1
  482. autobuylabel.Position = UDim2.new(1.19299996, 0, -0.095238097, 0)
  483. autobuylabel.Size = UDim2.new(0, 66, 0, 25)
  484. autobuylabel.Font = Enum.Font.SourceSans
  485. autobuylabel.Text = "Auto-Buy"
  486. autobuylabel.TextColor3 = Color3.new(1, 1, 1)
  487. autobuylabel.TextSize = 16
  488.  
  489. -- Inf. money variable check
  490. infmoneytoggle = false
  491.  
  492. infmoneybutton.Name = "infmoneybutton"
  493. infmoneybutton.Parent = limsimframe
  494. infmoneybutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  495. infmoneybutton.BorderColor3 = Color3.new(1, 0, 0)
  496. infmoneybutton.Position = UDim2.new(0.0373134315, 0, 0.256999999, 0)
  497. infmoneybutton.Size = UDim2.new(0, 21, 0, 21)
  498. infmoneybutton.Font = Enum.Font.SourceSans
  499. infmoneybutton.Text = ""
  500. infmoneybutton.TextColor3 = Color3.new(1, 0, 0)
  501. infmoneybutton.TextSize = 40
  502. -- Inf. money script
  503. infmoneybutton.MouseButton1Down:connect(function()
  504.     if infmoneytoggle == false
  505.     then
  506.         infmoneybutton.Text = ""
  507.         infmoneybutton.TextColor3 = Color3.new(0, 255, 0)
  508.         infmoneybutton.BorderColor3 = Color3.new(0, 255, 0)
  509.         infmoneytoggle = true
  510.         loadstring(game:HttpGet('https://pastebin.com/raw/PYxgutmA', true))()
  511.     else
  512.         print("Already toggled you dipshit")
  513.     end
  514. end)
  515.  
  516. infmoneylabel.Name = "infmoneylabel"
  517. infmoneylabel.Parent = infmoneybutton
  518. infmoneylabel.BackgroundColor3 = Color3.new(1, 1, 1)
  519. infmoneylabel.BackgroundTransparency = 1
  520. infmoneylabel.Position = UDim2.new(0.790000021, 0, -0.095238097, 0)
  521. infmoneylabel.Size = UDim2.new(0, 66, 0, 25)
  522. infmoneylabel.Font = Enum.Font.SourceSans
  523. infmoneylabel.Text = "Inf. R$"
  524. infmoneylabel.TextColor3 = Color3.new(1, 1, 1)
  525. infmoneylabel.TextSize = 16
  526.  
  527. tbd1.Name = "tbd1"
  528. tbd1.Parent = sidebar
  529. tbd1.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  530. tbd1.BorderSizePixel = 0
  531. tbd1.Position = UDim2.new(0, 0, 0.137362644, 0)
  532. tbd1.Size = UDim2.new(0, 118, 0, 50)
  533. tbd1.Font = Enum.Font.Highway
  534. tbd1.Text = "TBD"
  535. tbd1.TextColor3 = Color3.new(1, 1, 1)
  536. tbd1.TextSize = 20
  537. tbd1.TextWrapped = true
  538.  
  539. tbd2.Name = "tbd2"
  540. tbd2.Parent = sidebar
  541. tbd2.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  542. tbd2.BorderSizePixel = 0
  543. tbd2.Position = UDim2.new(0, 0, 0.274725288, 0)
  544. tbd2.Size = UDim2.new(0, 118, 0, 50)
  545. tbd2.Font = Enum.Font.Highway
  546. tbd2.Text = "TBD"
  547. tbd2.TextColor3 = Color3.new(1, 1, 1)
  548. tbd2.TextSize = 20
  549.  
  550. tbd3.Name = "tbd3"
  551. tbd3.Parent = sidebar
  552. tbd3.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  553. tbd3.BorderSizePixel = 0
  554. tbd3.Position = UDim2.new(0, 0, 0.412087917, 0)
  555. tbd3.Size = UDim2.new(0, 118, 0, 50)
  556. tbd3.Font = Enum.Font.Highway
  557. tbd3.Text = "TBD"
  558. tbd3.TextColor3 = Color3.new(1, 1, 1)
  559. tbd3.TextSize = 20
  560.  
  561. miscbutton.Name = "miscbutton"
  562. miscbutton.Parent = sidebar
  563. miscbutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  564. miscbutton.BorderSizePixel = 0
  565. miscbutton.Position = UDim2.new(0, 0, 0.549450576, 0)
  566. miscbutton.Size = UDim2.new(0, 118, 0, 50)
  567. miscbutton.Font = Enum.Font.Highway
  568. miscbutton.Text = "Misc Scripts"
  569. miscbutton.TextColor3 = Color3.new(1, 1, 1)
  570. miscbutton.TextSize = 20
  571. -- Open misc menu
  572. miscbutton.MouseButton1Down:connect(function()
  573.     miscframe.Visible = true
  574.     limsimframe.Visible = false
  575. end)
  576.  
  577. miscframe.Name = "miscframe"
  578. miscframe.Parent = miscbutton
  579. miscframe.Active = true
  580. miscframe.BackgroundColor3 = Color3.new(1, 1, 1)
  581. miscframe.BackgroundTransparency = 1
  582. miscframe.Position = UDim2.new(1.09322035, 0, -3.83999991, 0)
  583. miscframe.Size = UDim2.new(0, 402, 0, 350)
  584. miscframe.Visible = false
  585.  
  586. -- Walkspeed variable check nigga
  587. walkspeedtoggle = false
  588.  
  589. walkspeedbutton.Name = "walkspeedbutton"
  590. walkspeedbutton.Parent = miscframe
  591. walkspeedbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  592. walkspeedbutton.BorderColor3 = Color3.new(1, 0, 0)
  593. walkspeedbutton.Position = UDim2.new(0.0373134315, 0, 0.0600000061, 0)
  594. walkspeedbutton.Size = UDim2.new(0, 21, 0, 21)
  595. walkspeedbutton.Font = Enum.Font.SourceSans
  596. walkspeedbutton.Text = ""
  597. walkspeedbutton.TextColor3 = Color3.new(1, 0, 0)
  598. walkspeedbutton.TextSize = 40
  599. walkspeedbutton.MouseButton1Down:connect(function()
  600.     if walkspeedtoggle == false
  601.     then
  602.         walkspeedbutton.Text = ""
  603.         walkspeedbutton.TextColor3 = Color3.new(0, 255, 0)
  604.         walkspeedbutton.BorderColor3 = Color3.new(0, 255, 0)
  605.         walkspeedtoggle = true
  606.         loadstring(game:HttpGet('https://pastebin.com/raw/RxNPdx3q', true))()
  607.     else
  608.         print("Already toggled you dipshit")
  609.     end
  610. end)
  611.  
  612. walkspeedlabel.Name = "walkspeedlabel"
  613. walkspeedlabel.Parent = walkspeedbutton
  614. walkspeedlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  615. walkspeedlabel.BackgroundTransparency = 1
  616. walkspeedlabel.Position = UDim2.new(1.58958793, 0, -0.136666432, 0)
  617. walkspeedlabel.Size = UDim2.new(0, 72, 0, 25)
  618. walkspeedlabel.Font = Enum.Font.SourceSans
  619. walkspeedlabel.Text = "FE Walkspeed"
  620. walkspeedlabel.TextColor3 = Color3.new(1, 1, 1)
  621. walkspeedlabel.TextSize = 16
  622.  
  623. -- Jump power variable check nigga
  624. jumppowertoggle = false
  625.  
  626. jumppowerbutton.Name = "jumppowerbutton"
  627. jumppowerbutton.Parent = miscframe
  628. jumppowerbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  629. jumppowerbutton.BorderColor3 = Color3.new(1, 0, 0)
  630. jumppowerbutton.Position = UDim2.new(0.0373134315, 0, 0.160000011, 0)
  631. jumppowerbutton.Size = UDim2.new(0, 21, 0, 21)
  632. jumppowerbutton.Font = Enum.Font.SourceSans
  633. jumppowerbutton.Text = ""
  634. jumppowerbutton.TextColor3 = Color3.new(1, 0, 0)
  635. jumppowerbutton.TextSize = 40
  636. -- Jump power script
  637. jumppowerbutton.MouseButton1Down:connect(function()
  638.     if jumppowertoggle == false
  639.     then
  640.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = valuejumppower
  641.         jumppowerbutton.Text = ""
  642.         jumppowerbutton.TextColor3 = Color3.new(0, 255, 0)
  643.         jumppowerbutton.BorderColor3 = Color3.new(0, 255, 0)
  644.         jumppowertoggle = true
  645.     else
  646.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  647.         jumppowerbutton.Text = ""
  648.         jumppowerbutton.BorderColor3 = Color3.new(255, 0, 0)
  649.         jumppowertoggle = false
  650.     end
  651. end)
  652.  
  653. jumppowerlabel.Name = "jumppowerlabel"
  654. jumppowerlabel.Parent = jumppowerbutton
  655. jumppowerlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  656. jumppowerlabel.BackgroundTransparency = 1
  657. jumppowerlabel.Position = UDim2.new(1.58958817, 0, -0.136666775, 0)
  658. jumppowerlabel.Size = UDim2.new(0, 66, 0, 25)
  659. jumppowerlabel.Font = Enum.Font.SourceSans
  660. jumppowerlabel.Text = "Jump Power"
  661. jumppowerlabel.TextColor3 = Color3.new(1, 1, 1)
  662. jumppowerlabel.TextSize = 16
  663.  
  664. -- Non FE walkspeed variable check
  665. nonfewalkspeedtoggle = false
  666.  
  667. nonfewalkspeedbutton.Name = "nonfewalkspeedbutton"
  668. nonfewalkspeedbutton.Parent = miscframe
  669. nonfewalkspeedbutton.BackgroundColor3 = Color3.new(0.254902, 0.254902, 0.254902)
  670. nonfewalkspeedbutton.BorderColor3 = Color3.new(1, 0, 0)
  671. nonfewalkspeedbutton.Position = UDim2.new(0.0373134315, 0, 0.257999986, 0)
  672. nonfewalkspeedbutton.Size = UDim2.new(0, 21, 0, 21)
  673. nonfewalkspeedbutton.Font = Enum.Font.SourceSans
  674. nonfewalkspeedbutton.Text = ""
  675. nonfewalkspeedbutton.TextColor3 = Color3.new(1, 0, 0)
  676. nonfewalkspeedbutton.TextSize = 40
  677. -- Non FE walkspeed script
  678. nonfewalkspeedbutton.MouseButton1Down:connect(function()
  679.     if nonfewalkspeedtoggle == false
  680.     then
  681.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = valuewalkspeed
  682.         nonfewalkspeedbutton.Text = ""
  683.         nonfewalkspeedbutton.TextColor3 = Color3.new(0, 255, 0)
  684.         nonfewalkspeedbutton.BorderColor3 = Color3.new(0, 255, 0)
  685.         nonfewalkspeedtoggle = true
  686.     else
  687.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  688.         nonfewalkspeedbutton.Text = ""
  689.         nonfewalkspeedbutton.TextColor3 = Color3.new(255, 0, 0)
  690.         nonfewalkspeedbutton.BorderColor3 = Color3.new(255, 0, 0)
  691.         nonfewalkspeedtoggle = false
  692.     end
  693. end)
  694.  
  695. nonfewalkspeedlabel.Name = "nonfewalkspeedlabel"
  696. nonfewalkspeedlabel.Parent = nonfewalkspeedbutton
  697. nonfewalkspeedlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  698. nonfewalkspeedlabel.BackgroundTransparency = 1
  699. nonfewalkspeedlabel.Position = UDim2.new(1.3038739, 0, -0.136666775, 0)
  700. nonfewalkspeedlabel.Size = UDim2.new(0, 66, 0, 25)
  701. nonfewalkspeedlabel.Font = Enum.Font.SourceSans
  702. nonfewalkspeedlabel.Text = "Walkspeed"
  703. nonfewalkspeedlabel.TextColor3 = Color3.new(1, 1, 1)
  704. nonfewalkspeedlabel.TextSize = 16
  705.  
  706. -- bruh
  707. valuebutton.Name = "valuebutton"
  708. valuebutton.Parent = miscframe
  709. valuebutton.BackgroundColor3 = Color3.new(0.0705882, 0.0705882, 0.0705882)
  710. valuebutton.Position = UDim2.new(0.0350000001, 0, 0.345999986, 0)
  711. valuebutton.Size = UDim2.new(0, 59, 0, 21)
  712. valuebutton.Font = Enum.Font.SourceSans
  713. valuebutton.Text = "Set values"
  714. valuebutton.TextColor3 = Color3.new(1, 1, 1)
  715. valuebutton.TextSize = 14
  716. valuebutton.MouseButton1Down:connect(function()
  717.     valueframe.Visible = true
  718. end)
  719.  
  720. valueframe.Name = "valueframe"
  721. valueframe.Parent = valuebutton
  722. valueframe.Active = true
  723. valueframe.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  724. valueframe.BorderColor3 = Color3.new(0, 0.819608, 1)
  725. valueframe.Position = UDim2.new(10.474576, 0, -2.05238128, 0)
  726. valueframe.Size = UDim2.new(0, 124, 0, 59)
  727. valueframe.Visible = false
  728.  
  729. valuewalkspeedlabel.Name = "valuewalkspeedlabel"
  730. valuewalkspeedlabel.Parent = valueframe
  731. valuewalkspeedlabel.Active = true
  732. valuewalkspeedlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  733. valuewalkspeedlabel.BackgroundTransparency = 1
  734. valuewalkspeedlabel.Position = UDim2.new(-0.129999995, 0, 0.485000014, 0)
  735. valuewalkspeedlabel.Size = UDim2.new(0, 98, 0, 21)
  736. valuewalkspeedlabel.Font = Enum.Font.SourceSans
  737. valuewalkspeedlabel.Text = "Walkspeed"
  738. valuewalkspeedlabel.TextColor3 = Color3.new(1, 1, 1)
  739. valuewalkspeedlabel.TextSize = 14
  740.  
  741. valuewalkspeedbox.Name = "valuewalkspeedbox"
  742. valuewalkspeedbox.Parent = valuewalkspeedlabel
  743. valuewalkspeedbox.BackgroundColor3 = Color3.new(0.0705882, 0.0705882, 0.0705882)
  744. valuewalkspeedbox.BorderColor3 = Color3.new(1, 0, 0)
  745. valuewalkspeedbox.Position = UDim2.new(0.910000026, 0, 0.270000011, 0)
  746. valuewalkspeedbox.Size = UDim2.new(0, 41, 0, 14)
  747. valuewalkspeedbox.Font = Enum.Font.SourceSans
  748. valuewalkspeedbox.Text = "100"
  749. valuewalkspeedbox.TextColor3 = Color3.new(1, 1, 1)
  750. valuewalkspeedbox.TextSize = 14
  751. -- Walkspeed value
  752. valuewalkspeed = 100
  753.  
  754. valuejumppowerlabel.Name = "valuejumppowerlabel"
  755. valuejumppowerlabel.Parent = valueframe
  756. valuejumppowerlabel.Active = true
  757. valuejumppowerlabel.BackgroundColor3 = Color3.new(1, 1, 1)
  758. valuejumppowerlabel.BackgroundTransparency = 1
  759. valuejumppowerlabel.Position = UDim2.new(-0.0900000036, 0, 0.128999993, 0)
  760. valuejumppowerlabel.Size = UDim2.new(0, 98, 0, 21)
  761. valuejumppowerlabel.Font = Enum.Font.SourceSans
  762. valuejumppowerlabel.Text = "Jump Power"
  763. valuejumppowerlabel.TextColor3 = Color3.new(1, 1, 1)
  764. valuejumppowerlabel.TextSize = 14
  765.  
  766. valuejumppowerbox.Name = "valuejumppowerbox"
  767. valuejumppowerbox.Parent = valuejumppowerlabel
  768. valuejumppowerbox.BackgroundColor3 = Color3.new(0.0705882, 0.0705882, 0.0705882)
  769. valuejumppowerbox.BorderColor3 = Color3.new(1, 0, 0)
  770. valuejumppowerbox.Position = UDim2.new(0.857142866, 0, 0.270083487, 0)
  771. valuejumppowerbox.Size = UDim2.new(0, 41, 0, 14)
  772. valuejumppowerbox.Font = Enum.Font.SourceSans
  773. valuejumppowerbox.Text = "100"
  774. valuejumppowerbox.TextColor3 = Color3.new(1, 1, 1)
  775. valuejumppowerbox.TextSize = 14
  776. -- Jump Power value
  777. valuejumppower = 100
  778.  
  779. applybutton.Name = "applybutton"
  780. applybutton.Parent = valueframe
  781. applybutton.BackgroundColor3 = Color3.new(0.101961, 0.101961, 0.101961)
  782. applybutton.BorderColor3 = Color3.new(0, 0.819608, 1)
  783. applybutton.Position = UDim2.new(0.451999992, 0, 1, 1)
  784. applybutton.Size = UDim2.new(0, 68, 0, 18)
  785. applybutton.Font = Enum.Font.SourceSans
  786. applybutton.Text = "Apply"
  787. applybutton.TextColor3 = Color3.new(1, 1, 1)
  788. applybutton.TextSize = 14
  789. applybutton.MouseButton1Down:connect(function()
  790.     valuejumppower = tonumber(valuejumppowerbox.Text)
  791.     valuewalkspeed = tonumber(valuewalkspeedbox.Text)
  792.     valueframe.Visible = false
  793.     if nonfewalkspeedtoggle == true and jumppowertoggle == true then
  794.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = valuewalkspeed
  795.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = valuejumppower
  796.     elseif nonfewalkspeedtoggle == true then
  797.         game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = valuewalkspeed
  798.     elseif jumppowertoggle == true then
  799.         game.Players.LocalPlayer.Character.Humanoid.JumpPower = valuejumppower
  800.     else
  801.        
  802.     end
  803. end)
  804. -- bruh
  805.  
  806. MadeByLabel.Name = "MadeByLabel"
  807. MadeByLabel.Parent = sidebar
  808. MadeByLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  809. MadeByLabel.BackgroundTransparency = 1
  810. MadeByLabel.Position = UDim2.new(0, 0, 0.832417607, 0)
  811. MadeByLabel.Size = UDim2.new(0, 119, 0, 28)
  812. MadeByLabel.Font = Enum.Font.SourceSans
  813. MadeByLabel.Text = "GUI Made By"
  814. MadeByLabel.TextColor3 = Color3.new(1, 1, 1)
  815. MadeByLabel.TextSize = 14
  816.  
  817. -- Label Variable check niggiboi
  818. countdown = 0
  819.  
  820. HotlineLabel.Name = "HotlineLabel"
  821. HotlineLabel.Parent = sidebar
  822. HotlineLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  823. HotlineLabel.BackgroundTransparency = 1
  824. HotlineLabel.Position = UDim2.new(-0.00113512669, 0, 0.870999992, 0)
  825. HotlineLabel.Size = UDim2.new(0, 119, 0, 41)
  826. HotlineLabel.Font = Enum.Font.SourceSans
  827. HotlineLabel.Text = "Hotline#0001"
  828. HotlineLabel.TextColor3 = Color3.new(0, 0.819608, 1)
  829. HotlineLabel.TextSize = 20
  830. -- Label color changing script
  831. loginbutton.MouseButton1Down:connect(function()
  832. repeat
  833.     HotlineLabel.TextColor3 = Color3.new(0,204,255)
  834.     wait(.1)
  835.     HotlineLabel.TextColor3 = Color3.new(0,255,0)
  836.     wait(.1)
  837.     HotlineLabel.TextColor3 = Color3.new(255,255,0)
  838.     wait(.1)
  839.     HotlineLabel.TextColor3 = Color3.new(255,0,0)
  840.     wait(.1)
  841.     HotlineLabel.TextColor3 = Color3.new(153,0,153)
  842.     wait(.1)
  843.     HotlineLabel.TextColor3 = Color3.new(0,0,255)
  844.     wait(.1)
  845.     HotlineLabel.TextColor3 = Color3.new(0,209,255)
  846.     countdown = countdown + 1
  847. until
  848.     countdown == 5
  849. end)
  850.  
  851. closebutton.Name = "closebutton"
  852. closebutton.Parent = sidebar
  853. closebutton.BackgroundColor3 = Color3.new(1, 1, 1)
  854. closebutton.BackgroundTransparency = 1
  855. closebutton.Position = UDim2.new(0.942123353, 0, -4.19197512e-08, 0)
  856. closebutton.Size = UDim2.new(0, 31, 0, 31)
  857. closebutton.Font = Enum.Font.GothamBlack
  858. closebutton.Text = "X"
  859. closebutton.TextColor3 = Color3.new(1, 1, 1)
  860. closebutton.TextSize = 16
  861. -- Close GUI
  862. closebutton.MouseButton1Down:connect(function()
  863.     sidebar.Visible = false
  864.     openframe.Visible = true
  865. end)
  866.  
  867. divider.Name = "divider"
  868. divider.Parent = sidebar
  869. divider.BackgroundColor3 = Color3.new(0, 0.819608, 1)
  870. divider.BorderSizePixel = 0
  871. divider.Position = UDim2.new(0.216513753, 0, 0, 0)
  872. divider.Size = UDim2.new(0, 1, 0, 364)
  873. -- Scripts:
Add Comment
Please, Sign In to add comment