Advertisement
xOmqDarryl

Untitled

Oct 21st, 2020
39
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.47 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Main = Instance.new("Frame")
  8. local SwordFling = Instance.new("TextButton")
  9. local Title = Instance.new("TextLabel")
  10. local TextButton = Instance.new("TextButton")
  11. local OpenClose = Instance.new("Frame")
  12. local Open = Instance.new("TextButton")
  13.  
  14. --Properties:
  15.  
  16. ScreenGui.Parent = game.CoreGui
  17.  
  18. Main.Name = "Main"
  19. Main.Parent = ScreenGui
  20. Main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  21. Main.Position = UDim2.new(0.0112130567, 0, 0.539346159, 0)
  22. Main.Size = UDim2.new(0, 311, 0, 276)
  23. Main.Visible = false
  24. Main.Active = true
  25. Main.Draggable = true
  26.  
  27. SwordFling.Name = "SwordFling"
  28. SwordFling.Parent = Main
  29. SwordFling.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  30. SwordFling.Position = UDim2.new(0, 0, 0.182456136, 0)
  31. SwordFling.Size = UDim2.new(0, 141, 0, 50)
  32. SwordFling.Font = Enum.Font.SciFi
  33. SwordFling.Text = "SwordFling"
  34. SwordFling.TextColor3 = Color3.fromRGB(0, 0, 0)
  35. SwordFling.TextSize = 14.000
  36. SwordFling.MouseButton1Down:connect(function()
  37. loadstring(game:GetObjects("rbxassetid://5325226148")[1].Source)()
  38. end)
  39.  
  40. Title.Name = "Title"
  41. Title.Parent = Main
  42. Title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  43. Title.Size = UDim2.new(0, 311, 0, 35)
  44. Title.Font = Enum.Font.SciFi
  45. Title.Text = "xSlimeNet Hub"
  46. Title.TextColor3 = Color3.fromRGB(0, 0, 0)
  47. Title.TextSize = 17.000
  48.  
  49. TextButton.Parent = Main
  50. TextButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  51. TextButton.Position = UDim2.new(0.897106111, 0, 0.0253623184, 0)
  52. TextButton.Size = UDim2.new(0, 17, 0, 20)
  53. TextButton.Font = Enum.Font.SciFi
  54. TextButton.Text = "X"
  55. TextButton.TextColor3 = Color3.fromRGB(0, 0, 0)
  56. TextButton.TextSize = 14.000
  57. close.MouseButton1Down:connect(function()
  58. Main.Visible = false
  59. OpenMain.Visible = true
  60. end)
  61.  
  62. OpenClose.Name = "OpenClose"
  63. OpenClose.Parent = ScreenGui
  64. OpenClose.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  65. OpenClose.Position = UDim2.new(0.0112130493, 0, 0.452034891, 0)
  66. OpenClose.Size = UDim2.new(0, 100, 0, 15)
  67. OpenClose.Active = true
  68. OpenClose.Draggable = true
  69.  
  70. Open.Name = "Open"
  71. Open.Parent = OpenClose
  72. Open.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  73. Open.Position = UDim2.new(-1.1920929e-07, 0, 0, 0)
  74. Open.Size = UDim2.new(0, 100, 0, 15)
  75. Open.Font = Enum.Font.SciFi
  76. Open.Text = "OPEN"
  77. Open.TextColor3 = Color3.fromRGB(0, 0, 0)
  78. Open.TextSize = 14.000
  79. Open.MouseButton1Down:connect(function()
  80. OpenMain.Visible = false
  81. Main.Visible = true
  82. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement