Advertisement
alphabox

UI

Nov 29th, 2019
141
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.66 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3
  3.  
  4. -- Instances:
  5.  
  6. local DungeonQuestAutofarm = Instance.new("ScreenGui")
  7. local DragTitle = Instance.new("TextButton")
  8. local Whitelist = Instance.new("Frame")
  9. local Enter = Instance.new("TextBox")
  10.  
  11. --Properties:
  12.  
  13. DungeonQuestAutofarm.Name = "DungeonQuestAutofarm"
  14. DungeonQuestAutofarm.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. DungeonQuestAutofarm.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. DragTitle.Name = "Drag/Title"
  18. DragTitle.Parent = DungeonQuestAutofarm
  19. DragTitle.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  20. DragTitle.BorderColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  21. DragTitle.BorderSizePixel = 4
  22. DragTitle.Position = UDim2.new(0.0901909173, 0, 0.137592137, 0)
  23. DragTitle.Size = UDim2.new(0, 200, 0, 25)
  24. DragTitle.AutoButtonColor = false
  25. DragTitle.Font = Enum.Font.GothamSemibold
  26. DragTitle.Text = "DUNGEON QUEST AUTOFARM"
  27. DragTitle.TextColor3 = Color3.new(1, 1, 1)
  28. DragTitle.TextSize = 12
  29. DragTitle.Draggable = true
  30.  
  31. Whitelist.Name = "Whitelist"
  32. Whitelist.Parent = DragTitle
  33. Whitelist.BackgroundColor3 = Color3.new(0.176471, 0.176471, 0.176471)
  34. Whitelist.BorderColor3 = Color3.new(0.207843, 0.207843, 0.207843)
  35. Whitelist.BorderSizePixel = 4
  36. Whitelist.Position = UDim2.new(0, 0, 1, 0)
  37. Whitelist.Size = UDim2.new(0, 200, 0, 18)
  38.  
  39. Enter.Name = "Enter"
  40. Enter.Parent = Whitelist
  41. Enter.BackgroundColor3 = Color3.new(1, 1, 1)
  42. Enter.BackgroundTransparency = 1
  43. Enter.BorderColor3 = Color3.new(0.105882, 0.164706, 0.207843)
  44. Enter.Size = UDim2.new(0, 200, 0, 18)
  45. Enter.Font = Enum.Font.GothamSemibold
  46. Enter.Text = "WHITELIST KEY"
  47. Enter.TextColor3 = Color3.new(1, 1, 1)
  48. Enter.TextSize = 10
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement