Advertisement
BluezModZ

Roblox Simple Gui BluezModZ

Jan 18th, 2022
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.33 KB | None | 0 0
  1. --Made By BluezModZ
  2. --https://www.bluezmodz-scripts.weebly.com
  3. --password = 1667
  4.  
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local LoginGui = Instance.new("Frame")
  8. local GuiTittle = Instance.new("TextLabel")
  9. local password = Instance.new("TextBox")
  10. local Login = Instance.new("TextButton")
  11. local CheatGui = Instance.new("Frame")
  12. local GuiTittle_2 = Instance.new("TextLabel")
  13. local WalkSpeed = Instance.new("TextButton")
  14. local JumpPower = Instance.new("TextButton")
  15. local Exit = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  20. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  21.  
  22. LoginGui.Name = "LoginGui"
  23. LoginGui.Parent = ScreenGui
  24. LoginGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  25. LoginGui.Position = UDim2.new(0.392886013, 0, 0.275459111, 0)
  26. LoginGui.Size = UDim2.new(0, 286, 0, 210)
  27. LoginGui.Active = true
  28. LoginGui.Draggable = true
  29.  
  30. GuiTittle.Name = "GuiTittle"
  31. GuiTittle.Parent = LoginGui
  32. GuiTittle.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  33. GuiTittle.Size = UDim2.new(0, 286, 0, 50)
  34. GuiTittle.Font = Enum.Font.Ubuntu
  35. GuiTittle.Text = "BluezModZ / simple"
  36. GuiTittle.TextColor3 = Color3.fromRGB(0, 0, 0)
  37. GuiTittle.TextSize = 25.000
  38.  
  39. password.Name = "password"
  40. password.Parent = LoginGui
  41. password.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  42. password.BorderColor3 = Color3.fromRGB(0, 0, 127)
  43. password.Position = UDim2.new(0.132867128, 0, 0.309452742, 0)
  44. password.Size = UDim2.new(0, 210, 0, 50)
  45. password.Font = Enum.Font.SourceSans
  46. password.Text = "Password"
  47. password.TextColor3 = Color3.fromRGB(0, 0, 127)
  48. password.TextSize = 30.000
  49.  
  50. Login.Name = "Login"
  51. Login.Parent = LoginGui
  52. Login.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  53. Login.BorderColor3 = Color3.fromRGB(0, 0, 127)
  54. Login.Position = UDim2.new(0.132867128, 0, 0.661513925, 0)
  55. Login.Size = UDim2.new(0, 210, 0, 50)
  56. Login.Font = Enum.Font.SourceSans
  57. Login.Text = "Login"
  58. Login.TextColor3 = Color3.fromRGB(0, 0, 127)
  59. Login.TextSize = 30.000
  60. Login.MouseButton1Down:connect(function()
  61.     if password.Text == "1667" then
  62.         LoginGui.Visible = false
  63.         CheatGui.Visible = true
  64.     else
  65.         LoginGui.Visible = false
  66.         print(os.date('Incorrect Login Info %m/%d/%Y'))
  67.     end
  68. end)
  69.  
  70. CheatGui.Name = "CheatGui"
  71. CheatGui.Parent = ScreenGui
  72. CheatGui.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  73. CheatGui.Position = UDim2.new(0.390460789, 0, 0.298831373, 0)
  74. CheatGui.Size = UDim2.new(0, 331, 0, 240)
  75. CheatGui.Visible = false
  76. CheatGui.Active = true
  77. CheatGui.Draggable = true
  78.  
  79. GuiTittle_2.Name = "GuiTittle"
  80. GuiTittle_2.Parent = CheatGui
  81. GuiTittle_2.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  82. GuiTittle_2.Size = UDim2.new(0, 331, 0, 50)
  83. GuiTittle_2.Font = Enum.Font.Oswald
  84. GuiTittle_2.Text = "Simple Gui Made By BluezModZ"
  85. GuiTittle_2.TextColor3 = Color3.fromRGB(0, 0, 0)
  86. GuiTittle_2.TextSize = 25.000
  87.  
  88. WalkSpeed.Name = "WalkSpeed"
  89. WalkSpeed.Parent = CheatGui
  90. WalkSpeed.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  91. WalkSpeed.Position = UDim2.new(0.069486402, 0, 0.333333343, 0)
  92. WalkSpeed.Size = UDim2.new(0, 284, 0, 50)
  93. WalkSpeed.Font = Enum.Font.SourceSans
  94. WalkSpeed.Text = "Walk Speed"
  95. WalkSpeed.TextColor3 = Color3.fromRGB(0, 0, 0)
  96. WalkSpeed.TextSize = 43.000
  97. WalkSpeed.MouseButton1Down:connect(function()
  98.     local plr = game.Players.LocalPlayer
  99.     local char = plr.Character
  100.    
  101.     char.Humanoid.WalkSpeed = 75
  102. end)
  103.  
  104. JumpPower.Name = "JumpPower"
  105. JumpPower.Parent = CheatGui
  106. JumpPower.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  107. JumpPower.Position = UDim2.new(0.069486402, 0, 0.60833329, 0)
  108. JumpPower.Size = UDim2.new(0, 284, 0, 50)
  109. JumpPower.Font = Enum.Font.SourceSans
  110. JumpPower.Text = "Jump Power"
  111. JumpPower.TextColor3 = Color3.fromRGB(0, 0, 0)
  112. JumpPower.TextSize = 43.000
  113. JumpPower.MouseButton1Down:connect(function()
  114.     local plr = game.Players.LocalPlayer
  115.     local char = plr.Character
  116.    
  117.     char.Humanoid.JumpPower = 100
  118. end)
  119.  
  120. Exit.Name = "Exit"
  121. Exit.Parent = CheatGui
  122. Exit.BackgroundColor3 = Color3.fromRGB(0, 0, 127)
  123. Exit.BorderColor3 = Color3.fromRGB(0, 0, 0)
  124. Exit.Position = UDim2.new(0.912386715, 0, -2.79396772e-08, 0)
  125. Exit.Size = UDim2.new(0, 29, 0, 22)
  126. Exit.Font = Enum.Font.SourceSans
  127. Exit.Text = "X"
  128. Exit.TextColor3 = Color3.fromRGB(0, 0, 0)
  129. Exit.TextSize = 14.000
  130. Exit.MouseButton1Down:connect(function()
  131.     CheatGui.Visible = false
  132.     print('Thanks For Using BluezModZ Scripts!')
  133. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement