BonelessHotline

2k GUI 1.2.1

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