skylershults

VALUETIER

Jun 24th, 2020 (edited)
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.24 KB | None | 0 0
  1. -- Gui to Lua
  2. -- Version: 3.2
  3.  
  4. -- Instances:
  5.  
  6. local VALUETIER = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local ImageLabel = Instance.new("ImageLabel")
  9. local TextButton = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. VALUETIER.Name = "VALUETIER"
  14. VALUETIER.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15.  
  16. Frame.Parent = VALUETIER
  17. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  18. Frame.BackgroundTransparency = 1.000
  19. Frame.Position = UDim2.new(0.223505408, 0, 0.0815611407, 0)
  20. Frame.Size = UDim2.new(0, 973, 0, 897)
  21.  
  22. ImageLabel.Parent = Frame
  23. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  24. ImageLabel.Size = UDim2.new(0, 973, 0, 897)
  25. ImageLabel.Image = "rbxassetid://6045774898"
  26.  
  27. TextButton.Parent = Frame
  28. TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. TextButton.BackgroundTransparency = 1.000
  30. TextButton.BorderColor3 = Color3.fromRGB(27, 42, 53)
  31. TextButton.Position = UDim2.new(0.982875466, 0, -0.000497207046, 0)
  32. TextButton.Size = UDim2.new(0, 16, 0, 17)
  33. TextButton.Font = Enum.Font.SourceSans
  34. TextButton.Text = "-"
  35. TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
  36. TextButton.TextSize = 50.000
  37. TextButton.MouseButton1Up:Connect(function()
  38. VALUETIER:Destroy()
  39. end)
Add Comment
Please, Sign In to add comment