Advertisement
Guest User

5

a guest
Jan 26th, 2020
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.10 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.1
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local MainF = Instance.new("Frame")
  8. local Title = Instance.new("TextLabel")
  9. local OJ = Instance.new("TextButton")
  10. local OpenMain = Instance.new("Frame")
  11. local Open = Instance.new("TextButton")
  12.  
  13. --Properties:
  14.  
  15. ScreenGui.Parent = game.CoreGui
  16. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. MainF.Name = "MainF"
  19. MainF.Parent = ScreenGui
  20. MainF.BackgroundColor3 = Color3.fromRGB(79, 79, 79)
  21. MainF.Position = UDim2.new(0.145185187, 0, 0.619326472, 0)
  22. MainF.Size = UDim2.new(0, 185, 0, 152)
  23. MainF.Visible = false
  24. MainF.Active = true
  25. MainF.Draggable = true
  26.  
  27. Title.Name = "Title"
  28. Title.Parent = MainF
  29. Title.BackgroundColor3 = Color3.fromRGB(144, 144, 144)
  30. Title.Size = UDim2.new(0, 185, 0, 42)
  31. Title.Font = Enum.Font.Cartoon
  32. Title.Text = "Orange Justice (REMAKE)"
  33. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  34. Title.TextScaled = true
  35. Title.TextSize = 14.000
  36. Title.TextWrapped = true
  37.  
  38. OJ.Name = "OJ"
  39. OJ.Parent = MainF
  40. OJ.BackgroundColor3 = Color3.fromRGB(138, 138, 138)
  41. OJ.Position = UDim2.new(0, 0, 0.427631766, 0)
  42. OJ.Size = UDim2.new(0, 185, 0, 50)
  43. OJ.Font = Enum.Font.Cartoon
  44. OJ.Text = "Orange Justice (FE)"
  45. OJ.TextColor3 = Color3.fromRGB(0, 0, 0)
  46. OJ.TextScaled = true
  47. OJ.TextSize = 14.000
  48. OJ.TextWrapped = true
  49. OJ.MouseButton1Down:connect(function()
  50. game.Players.LocalPlayer:Kick()
  51. end)
  52.  
  53. OpenMain.Name = "OpenMain"
  54. OpenMain.Parent = ScreenGui
  55. OpenMain.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  56. OpenMain.Position = UDim2.new(0, 0, 0.480234265, 0)
  57. OpenMain.Size = UDim2.new(0, 100, 0, 38)
  58. OpenMain.Active = true
  59. OpenMain.Draggable = true
  60.  
  61. Open.Name = "Open"
  62. Open.Parent = OpenMain
  63. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  64. Open.Position = UDim2.new(0.0600000024, 0, 0.0789473653, 0)
  65. Open.Size = UDim2.new(0, 87, 0, 31)
  66. Open.Font = Enum.Font.Cartoon
  67. Open.Text = "OPEN"
  68. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  69. Open.TextScaled = true
  70. Open.TextSize = 14.000
  71. Open.TextWrapped = true
  72. Open.MouseButton1Down:connect(function()
  73. OpenMain.Visible = false
  74. MainF.Visible = true
  75. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement