Advertisement
yaminameis59

Locrust GUI Alpha v1.0

Jan 9th, 2022
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.75 KB | None | 0 0
  1.  
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local main = Instance.new("Frame")
  5. local label = Instance.new("TextLabel")
  6. local printtest = Instance.new("TextButton")
  7. local jailbreakautorob = Instance.new("TextButton")
  8.  
  9. --Properties:
  10.  
  11. ScreenGui.Parent = game.CoreGui
  12.  
  13. main.Name = "main"
  14. main.Parent = ScreenGui
  15. main.BackgroundColor3 = Color3.fromRGB(53, 53, 53)
  16. main.Position = UDim2.new(0.534127593, 0, 0.548304021, 0)
  17. main.Size = UDim2.new(0, 531, 0, 294)
  18. main.Active = true
  19. main.Draggable = true
  20.  
  21. label.Name = "label"
  22. label.Parent = main
  23. label.BackgroundColor3 = Color3.fromRGB(98, 98, 98)
  24. label.Size = UDim2.new(0, 531, 0, 50)
  25. label.Font = Enum.Font.SciFi
  26. label.Text = "Locrust GUI Alpha v1.0"
  27. label.TextColor3 = Color3.fromRGB(0, 0, 0)
  28. label.TextSize = 14.000
  29.  
  30. printtest.Name = "printtest"
  31. printtest.Parent = main
  32. printtest.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  33. printtest.Position = UDim2.new(0, 0, 0.170068026, 0)
  34. printtest.Size = UDim2.new(0, 258, 0, 244)
  35. printtest.Font = Enum.Font.SciFi
  36. printtest.Text = "Print text \"Test\""
  37. printtest.TextColor3 = Color3.fromRGB(0, 0, 0)
  38. printtest.TextSize = 25.000
  39. printtest.MouseButton1Down:connect(function()
  40.     print('test')
  41. end)
  42.  
  43. jailbreakautorob.Name = "jailbreakautorob"
  44. jailbreakautorob.Parent = main
  45. jailbreakautorob.BackgroundColor3 = Color3.fromRGB(71, 71, 71)
  46. jailbreakautorob.Position = UDim2.new(0.485875696, 0, 0.170068026, 0)
  47. jailbreakautorob.Size = UDim2.new(0, 273, 0, 244)
  48. jailbreakautorob.Font = Enum.Font.SciFi
  49. jailbreakautorob.Text = "Jailbreak Auto Rob"
  50. jailbreakautorob.TextColor3 = Color3.fromRGB(0, 0, 0)
  51. jailbreakautorob.TextSize = 25.000
  52. jailbreakautorob.MouseButton1Down:connect(function()
  53.     loadstring(game:GetObjects("rbxassetid://1461971147")[1].Source)()
  54. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement