Advertisement
BluezModZ

Roblox Fe Gui BluezModZ

Jan 18th, 2022
608
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 15.81 KB | None | 0 0
  1. --Made By BluezModZ
  2. --https://www.bluezmodz-scripts.weebly.com
  3. --I hope you have a good year :D
  4. --Username = BluezModZ
  5. --password = 1667
  6.  
  7. local ScreenGui = Instance.new("ScreenGui")
  8. local LoginFrame = Instance.new("Frame")
  9. local LoginTittle = Instance.new("TextLabel")
  10. local username = Instance.new("TextBox")
  11. local password = Instance.new("TextBox")
  12. local Login = Instance.new("TextButton")
  13. local Exit = Instance.new("TextButton")
  14. local FeGui = Instance.new("Frame")
  15. local TextLabel = Instance.new("TextLabel")
  16. local gotoWalkspeed = Instance.new("TextButton")
  17. local gotoJumppower = Instance.new("TextButton")
  18. local gotoAntiafk = Instance.new("TextButton")
  19. local say = Instance.new("TextButton")
  20. local copy = Instance.new("TextButton")
  21. local FeGuiExit = Instance.new("TextButton")
  22. local WalkSpeedGui = Instance.new("Frame")
  23. local speedTittle = Instance.new("TextLabel")
  24. local walkspeedInput = Instance.new("TextBox")
  25. local WalkSpeedExe = Instance.new("TextButton")
  26. local ExitSpeed = Instance.new("TextButton")
  27. local JumpPowerGui = Instance.new("Frame")
  28. local JumpPowerTittle = Instance.new("TextLabel")
  29. local JumpPowerInput = Instance.new("TextBox")
  30. local ExitJumpPower = Instance.new("TextButton")
  31. local setJumpPower = Instance.new("TextButton")
  32. local AntiAfkGui = Instance.new("Frame")
  33. local AntiAfkTittle = Instance.new("TextLabel")
  34. local AntiAfkOn = Instance.new("TextButton")
  35. local AntiAfkOff = Instance.new("TextButton")
  36. local AntiAfkExit = Instance.new("TextButton")
  37.  
  38. --Properties:
  39.  
  40. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  41. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  42.  
  43. LoginFrame.Name = "LoginFrame"
  44. LoginFrame.Parent = ScreenGui
  45. LoginFrame.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  46. LoginFrame.Position = UDim2.new(0.409862578, 0, 0.270450741, 0)
  47. LoginFrame.Size = UDim2.new(0, 237, 0, 274)
  48. LoginFrame.Active = true
  49. LoginFrame.Draggable = true
  50.  
  51.  
  52. LoginTittle.Name = "LoginTittle"
  53. LoginTittle.Parent = LoginFrame
  54. LoginTittle.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  55. LoginTittle.Size = UDim2.new(0, 237, 0, 50)
  56. LoginTittle.Font = Enum.Font.SciFi
  57. LoginTittle.Text = "Login Fe Script - BluezModZ"
  58. LoginTittle.TextColor3 = Color3.fromRGB(0, 0, 127)
  59. LoginTittle.TextSize = 15.000
  60.  
  61. username.Name = "username"
  62. username.Parent = LoginFrame
  63. username.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  64. username.BorderColor3 = Color3.fromRGB(0, 0, 127)
  65. username.Position = UDim2.new(0.0759493634, 0, 0.244525552, 0)
  66. username.Size = UDim2.new(0, 200, 0, 50)
  67. username.Font = Enum.Font.SourceSans
  68. username.Text = "Username"
  69. username.TextColor3 = Color3.fromRGB(0, 0, 127)
  70. username.TextSize = 25.000
  71.  
  72. password.Name = "password"
  73. password.Parent = LoginFrame
  74. password.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  75. password.BorderColor3 = Color3.fromRGB(0, 0, 127)
  76. password.Position = UDim2.new(0.0759493634, 0, 0.496350378, 0)
  77. password.Size = UDim2.new(0, 200, 0, 50)
  78. password.Font = Enum.Font.SourceSans
  79. password.Text = "Password"
  80. password.TextColor3 = Color3.fromRGB(0, 0, 127)
  81. password.TextSize = 25.000
  82.  
  83. Login.Name = "Login"
  84. Login.Parent = LoginFrame
  85. Login.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  86. Login.BorderColor3 = Color3.fromRGB(0, 0, 127)
  87. Login.Position = UDim2.new(0.0759493634, 0, 0.755474448, 0)
  88. Login.Size = UDim2.new(0, 200, 0, 50)
  89. Login.Font = Enum.Font.SourceSans
  90. Login.Text = "Login"
  91. Login.TextColor3 = Color3.fromRGB(0, 0, 127)
  92. Login.TextSize = 25.000
  93. Login.MouseButton1Down:connect(function()
  94.     if username.Text == "BluezModZ" and password.Text == "1667" then
  95.         LoginFrame.Visible = false
  96.         FeGui.Visible = true
  97.     else
  98.         LoginTittle.Text = "Incorrect Login Info!"
  99.         username.Text = "Username"
  100.         password.Text = "Password"
  101.         wait(5)
  102.         LoginTittle.Text = "Login Fe Script - BluezModZ"
  103.         print('Incorrect Login Information!')
  104.     end
  105.     end)
  106.  
  107. Exit.Name = "Exit"
  108. Exit.Parent = LoginFrame
  109. Exit.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  110. Exit.BorderColor3 = Color3.fromRGB(0, 0, 127)
  111. Exit.Position = UDim2.new(0.877637148, 0, 0, 0)
  112. Exit.Size = UDim2.new(0, 29, 0, 26)
  113. Exit.Font = Enum.Font.SpecialElite
  114. Exit.Text = "X"
  115. Exit.TextColor3 = Color3.fromRGB(0, 0, 127)
  116. Exit.TextSize = 25.000
  117. Exit.MouseButton1Down:connect(function()
  118.     LoginFrame.Visible = false
  119.     print('Thanks For Using BluezModZ Scripts!')
  120.     end)
  121.  
  122. FeGui.Name = "FeGui"
  123. FeGui.Parent = ScreenGui
  124. FeGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  125. FeGui.Position = UDim2.new(0.308811635, 0, 0.158597663, 0)
  126. FeGui.Size = UDim2.new(0, 514, 0, 310)
  127. FeGui.Visible = false
  128. FeGui.Active = true
  129. FeGui.Draggable = true
  130.  
  131. TextLabel.Parent = FeGui
  132. TextLabel.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  133. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  134. TextLabel.Size = UDim2.new(0, 514, 0, 50)
  135. TextLabel.Font = Enum.Font.SciFi
  136. TextLabel.Text = "FE Gui - BluezModZ"
  137. TextLabel.TextColor3 = Color3.fromRGB(0, 0, 0)
  138. TextLabel.TextSize = 25.000
  139.  
  140. gotoWalkspeed.Name = "gotoWalkspeed"
  141. gotoWalkspeed.Parent = FeGui
  142. gotoWalkspeed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  143. gotoWalkspeed.BorderColor3 = Color3.fromRGB(0, 0, 127)
  144. gotoWalkspeed.Position = UDim2.new(0.0375057943, 0, 0.177985951, 0)
  145. gotoWalkspeed.Size = UDim2.new(0, 200, 0, 50)
  146. gotoWalkspeed.Font = Enum.Font.SourceSans
  147. gotoWalkspeed.Text = "Walk Speed"
  148. gotoWalkspeed.TextColor3 = Color3.fromRGB(0, 0, 127)
  149. gotoWalkspeed.TextSize = 20.000
  150. gotoWalkspeed.MouseButton1Down:connect(function()
  151.     WalkSpeedGui.Visible = true
  152.     end)
  153.  
  154. gotoJumppower.Name = "gotoJumppower"
  155. gotoJumppower.Parent = FeGui
  156. gotoJumppower.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  157. gotoJumppower.BorderColor3 = Color3.fromRGB(0, 0, 127)
  158. gotoJumppower.Position = UDim2.new(0.528824687, 0, 0.177985951, 0)
  159. gotoJumppower.Size = UDim2.new(0, 200, 0, 50)
  160. gotoJumppower.Font = Enum.Font.SourceSans
  161. gotoJumppower.Text = "Jump Power"
  162. gotoJumppower.TextColor3 = Color3.fromRGB(0, 0, 127)
  163. gotoJumppower.TextSize = 20.000
  164. gotoJumppower.MouseButton1Down:connect(function()
  165.     JumpPowerGui.Visible = true
  166.     end)
  167.  
  168. gotoAntiafk.Name = "gotoAntiafk"
  169. gotoAntiafk.Parent = FeGui
  170. gotoAntiafk.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  171. gotoAntiafk.BorderColor3 = Color3.fromRGB(0, 0, 127)
  172. gotoAntiafk.Position = UDim2.new(0.0375058055, 0, 0.416952521, 0)
  173. gotoAntiafk.Size = UDim2.new(0, 200, 0, 50)
  174. gotoAntiafk.Font = Enum.Font.SourceSans
  175. gotoAntiafk.Text = "Anti Afk"
  176. gotoAntiafk.TextColor3 = Color3.fromRGB(0, 0, 127)
  177. gotoAntiafk.TextSize = 20.000
  178. gotoAntiafk.MouseButton1Down:connect(function()
  179.     AntiAfkGui.Visible = true
  180.     end)
  181.  
  182. say.Name = "say"
  183. say.Parent = FeGui
  184. say.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  185. say.BorderColor3 = Color3.fromRGB(0, 0, 127)
  186. say.Position = UDim2.new(0.527778149, 0, 0.416952521, 0)
  187. say.Size = UDim2.new(0, 200, 0, 50)
  188. say.Font = Enum.Font.SourceSans
  189. say.Text = "Say"
  190. say.TextColor3 = Color3.fromRGB(0, 0, 127)
  191. say.TextSize = 20.000
  192. say.MouseButton1Down:connect(function()
  193.     game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("Thanks For Using BluezModZ Scripts!", "All")
  194.     game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer("BluezModZ Scripts Are The Best Upcoming Scripts!", "All")
  195. end)
  196.  
  197. copy.Name = "copy"
  198. copy.Parent = FeGui
  199. copy.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  200. copy.BorderColor3 = Color3.fromRGB(0, 0, 127)
  201. copy.Position = UDim2.new(0.0375057757, 0, 0.707259953, 0)
  202. copy.Size = UDim2.new(0, 200, 0, 50)
  203. copy.Font = Enum.Font.SourceSans
  204. copy.Text = "Copy Website"
  205. copy.TextColor3 = Color3.fromRGB(0, 0, 127)
  206. copy.TextSize = 20.000
  207. copy.MouseButton1Down:connect(function()
  208.     setclipboard("https://www.bluezmodz-scripts.weebly.com")
  209. end)
  210.  
  211. FeGuiExit.Name = "FeGuiExit"
  212. FeGuiExit.Parent = FeGui
  213. FeGuiExit.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  214. FeGuiExit.BorderColor3 = Color3.fromRGB(0, 0, 127)
  215. FeGuiExit.Position = UDim2.new(0.527778149, 0, 0.706292987, 0)
  216. FeGuiExit.Size = UDim2.new(0, 200, 0, 50)
  217. FeGuiExit.Font = Enum.Font.SourceSans
  218. FeGuiExit.Text = "Exit"
  219. FeGuiExit.TextColor3 = Color3.fromRGB(0, 0, 127)
  220. FeGuiExit.TextSize = 20.000
  221. FeGuiExit.MouseButton1Down:connect(function()
  222.     FeGui.Visible = false
  223.     end)
  224.  
  225. WalkSpeedGui.Name = "WalkSpeedGui"
  226. WalkSpeedGui.Parent = ScreenGui
  227. WalkSpeedGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  228. WalkSpeedGui.Position = UDim2.new(0.361358136, 0, 0.193656087, 0)
  229. WalkSpeedGui.Size = UDim2.new(0, 283, 0, 232)
  230. WalkSpeedGui.Visible = false
  231. WalkSpeedGui.Active = true
  232. WalkSpeedGui.Draggable = true
  233.  
  234.  
  235. speedTittle.Name = "speedTittle"
  236. speedTittle.Parent = WalkSpeedGui
  237. speedTittle.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  238. speedTittle.Size = UDim2.new(0, 283, 0, 50)
  239. speedTittle.Font = Enum.Font.SourceSans
  240. speedTittle.Text = "WalkSpeed [Pending...]"
  241. speedTittle.TextColor3 = Color3.fromRGB(0, 0, 0)
  242. speedTittle.TextSize = 25.000
  243.  
  244. walkspeedInput.Name = "walkspeedInput"
  245. walkspeedInput.Parent = WalkSpeedGui
  246. walkspeedInput.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  247. walkspeedInput.BorderColor3 = Color3.fromRGB(0, 0, 127)
  248. walkspeedInput.Position = UDim2.new(0.144876331, 0, 0.320724845, 0)
  249. walkspeedInput.Size = UDim2.new(0, 200, 0, 50)
  250. walkspeedInput.Font = Enum.Font.SourceSans
  251. walkspeedInput.Text = "Number Here"
  252. walkspeedInput.TextColor3 = Color3.fromRGB(0, 0, 127)
  253. walkspeedInput.TextSize = 35.000
  254. walkspeedInput.TextStrokeColor3 = Color3.fromRGB(0, 0, 127)
  255.  
  256. WalkSpeedExe.Name = "WalkSpeedExe"
  257. WalkSpeedExe.Parent = WalkSpeedGui
  258. WalkSpeedExe.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  259. WalkSpeedExe.BorderColor3 = Color3.fromRGB(0, 0, 127)
  260. WalkSpeedExe.Position = UDim2.new(0.144876331, 0, 0.629310369, 0)
  261. WalkSpeedExe.Size = UDim2.new(0, 200, 0, 50)
  262. WalkSpeedExe.Font = Enum.Font.SourceSans
  263. WalkSpeedExe.Text = "Set WalkSpeed"
  264. WalkSpeedExe.TextColor3 = Color3.fromRGB(0, 0, 127)
  265. WalkSpeedExe.TextSize = 35.000
  266. WalkSpeedExe.MouseButton1Down:connect(function()
  267.     local plr = game.Players.LocalPlayer
  268.     local char = plr.Character
  269.  
  270.     char.Humanoid.WalkSpeed = walkspeedInput.Text
  271.     speedTittle.Text = "Set Walk Speed [Injected!]"
  272.     wait(5)
  273.     speedTittle.Text = "Walk Speed [Pending...]"
  274.     end)
  275.  
  276. ExitSpeed.Name = "ExitSpeed"
  277. ExitSpeed.Parent = WalkSpeedGui
  278. ExitSpeed.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  279. ExitSpeed.Position = UDim2.new(0.883392215, 0, 0, 0)
  280. ExitSpeed.Size = UDim2.new(0, 33, 0, 20)
  281. ExitSpeed.Font = Enum.Font.SourceSans
  282. ExitSpeed.Text = "X"
  283. ExitSpeed.TextColor3 = Color3.fromRGB(0, 0, 127)
  284. ExitSpeed.TextSize = 35.000
  285. ExitSpeed.MouseButton1Down:connect(function()
  286.     WalkSpeedGui.Visible = false
  287.     end)
  288.  
  289. JumpPowerGui.Name = "JumpPowerGui"
  290. JumpPowerGui.Parent = ScreenGui
  291. JumpPowerGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  292. JumpPowerGui.Position = UDim2.new(0.364591777, 0, 0.193656102, 0)
  293. JumpPowerGui.Size = UDim2.new(0, 270, 0, 233)
  294. JumpPowerGui.Visible = false
  295. JumpPowerGui.Active = true
  296. JumpPowerGui.Draggable = true
  297.  
  298.  
  299. JumpPowerTittle.Name = "JumpPowerTittle"
  300. JumpPowerTittle.Parent = JumpPowerGui
  301. JumpPowerTittle.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  302. JumpPowerTittle.Size = UDim2.new(0, 270, 0, 50)
  303. JumpPowerTittle.Font = Enum.Font.SourceSans
  304. JumpPowerTittle.TextColor3 = Color3.fromRGB(0, 0, 0)
  305. JumpPowerTittle.TextSize = 35.000
  306. JumpPowerTittle.Text = "Jump [Pending...]"
  307.  
  308. JumpPowerInput.Name = "JumpPowerInput"
  309. JumpPowerInput.Parent = JumpPowerGui
  310. JumpPowerInput.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  311. JumpPowerInput.BorderColor3 = Color3.fromRGB(0, 0, 127)
  312. JumpPowerInput.Position = UDim2.new(0.129629627, 0, 0.351931334, 0)
  313. JumpPowerInput.Size = UDim2.new(0, 200, 0, 50)
  314. JumpPowerInput.Font = Enum.Font.SourceSans
  315. JumpPowerInput.Text = "Number Here"
  316. JumpPowerInput.TextColor3 = Color3.fromRGB(0, 0, 127)
  317. JumpPowerInput.TextSize = 35.000
  318.  
  319. ExitJumpPower.Name = "ExitJumpPower"
  320. ExitJumpPower.Parent = JumpPowerGui
  321. ExitJumpPower.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  322. ExitJumpPower.Position = UDim2.new(0.870370388, 0, 0, 0)
  323. ExitJumpPower.Size = UDim2.new(0, 35, 0, 33)
  324. ExitJumpPower.Font = Enum.Font.SourceSans
  325. ExitJumpPower.Text = "X"
  326. ExitJumpPower.TextColor3 = Color3.fromRGB(0, 0, 127)
  327. ExitJumpPower.TextSize = 25.000
  328. ExitJumpPower.MouseButton1Down:connect(function()
  329.     JumpPowerGui.Visible = false
  330.     end)
  331.  
  332. setJumpPower.Name = "setJumpPower"
  333. setJumpPower.Parent = JumpPowerGui
  334. setJumpPower.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  335. setJumpPower.BorderColor3 = Color3.fromRGB(0, 0, 127)
  336. setJumpPower.Position = UDim2.new(0.129629627, 0, 0.639485002, 0)
  337. setJumpPower.Size = UDim2.new(0, 200, 0, 50)
  338. setJumpPower.Font = Enum.Font.SourceSans
  339. setJumpPower.TextColor3 = Color3.fromRGB(0, 0, 127)
  340. setJumpPower.TextSize = 35.000
  341. setJumpPower.TextWrapped = true
  342. setJumpPower.Text = "Set"
  343. setJumpPower.MouseButton1Down:connect(function()
  344.     local plr = game.Players.LocalPlayer
  345.     local char = plr.Character
  346.     char.Humanoid.JumpPower = JumpPowerInput.Text
  347.     JumpPowerTittle.Text = "Injected!"
  348.     wait(5)
  349.     JumpPowerTittle.Text = "Jump [Pending...]"
  350.     end)
  351.  
  352. AntiAfkGui.Name = "AntiAfkGui"
  353. AntiAfkGui.Parent = ScreenGui
  354. AntiAfkGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  355. AntiAfkGui.Position = UDim2.new(0.415521413, 0, 0.233722866, 0)
  356. AntiAfkGui.Size = UDim2.new(0, 308, 0, 240)
  357. AntiAfkGui.Visible = false
  358. AntiAfkGui.Active = true
  359. AntiAfkGui.Draggable = true
  360.  
  361. AntiAfkTittle.Name = "AntiAfkTittle"
  362. AntiAfkTittle.Parent = AntiAfkGui
  363. AntiAfkTittle.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  364. AntiAfkTittle.Size = UDim2.new(0, 308, 0, 50)
  365. AntiAfkTittle.Font = Enum.Font.SourceSans
  366. AntiAfkTittle.Text = "Anti Afk [Pending...]"
  367. AntiAfkTittle.TextColor3 = Color3.fromRGB(0, 0, 0)
  368. AntiAfkTittle.TextSize = 35.000
  369.  
  370. AntiAfkOn.Name = "AntiAfkOn"
  371. AntiAfkOn.Parent = AntiAfkGui
  372. AntiAfkOn.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  373. AntiAfkOn.BorderColor3 = Color3.fromRGB(0, 0, 127)
  374. AntiAfkOn.Position = UDim2.new(0.0746753216, 0, 0.349999994, 0)
  375. AntiAfkOn.Size = UDim2.new(0, 255, 0, 50)
  376. AntiAfkOn.Font = Enum.Font.SourceSans
  377. AntiAfkOn.Text = "Anti Afk [ON]"
  378. AntiAfkOn.TextColor3 = Color3.fromRGB(0, 0, 127)
  379. AntiAfkOn.TextSize = 35.000
  380. AntiAfkOn.TextStrokeColor3 = Color3.fromRGB(0, 0, 127)
  381. AntiAfkOn.MouseButton1Down:connect(function()
  382.     getgenv().afk = true
  383.     AntiAfkTittle.Text = "Anti Afk [On]"
  384.  
  385.     while wait() do
  386.         if getgenv().afk == true then
  387.             local plr = game.Players.LocalPlayer
  388.             local char = plr.Character
  389.             char.Humanoid.Jump = true
  390.         end
  391.     end
  392. end)
  393.  
  394. AntiAfkOff.Name = "AntiAfkOff"
  395. AntiAfkOff.Parent = AntiAfkGui
  396. AntiAfkOff.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  397. AntiAfkOff.BorderColor3 = Color3.fromRGB(0, 0, 127)
  398. AntiAfkOff.Position = UDim2.new(0.0746753216, 0, 0.625, 0)
  399. AntiAfkOff.Size = UDim2.new(0, 255, 0, 50)
  400. AntiAfkOff.Font = Enum.Font.SourceSans
  401. AntiAfkOff.Text = "Anti Afk [OFF]"
  402. AntiAfkOff.TextColor3 = Color3.fromRGB(0, 0, 127)
  403. AntiAfkOff.TextSize = 35.000
  404. AntiAfkOff.TextStrokeColor3 = Color3.fromRGB(0, 0, 127)
  405. AntiAfkOff.MouseButton1Down:connect(function()
  406.     getgenv().afk = false
  407.     AntiAfkTittle.Text = "Anti Afk [Off]"
  408.     wait(5)
  409.     AntiAfkTittle.Text = "Anti Afk [Pending...]"
  410.  
  411.     while wait() do
  412.         if getgenv().afk == true then
  413.             local plr = game.Players.LocalPlayer
  414.             local char = plr.Character
  415.             char.Humanoid.Jump = true
  416.         end
  417.     end
  418. end)
  419.  
  420. AntiAfkExit.Name = "AntiAfkExit"
  421. AntiAfkExit.Parent = AntiAfkGui
  422. AntiAfkExit.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  423. AntiAfkExit.BorderColor3 = Color3.fromRGB(0, 0, 127)
  424. AntiAfkExit.Position = UDim2.new(0.86038959, 0, -6.35782911e-08, 0)
  425. AntiAfkExit.Size = UDim2.new(0, 43, 0, 25)
  426. AntiAfkExit.Font = Enum.Font.SourceSans
  427. AntiAfkExit.Text = "X"
  428. AntiAfkExit.TextColor3 = Color3.fromRGB(0, 0, 127)
  429. AntiAfkExit.TextSize = 35.000
  430. AntiAfkExit.TextStrokeColor3 = Color3.fromRGB(0, 0, 127)
  431. AntiAfkExit.MouseButton1Down:connect(function()
  432.     AntiAfkGui.Visible = false
  433. end)
  434.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement