SnapSan777

lol

Jul 24th, 2024 (edited)
1,135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.40 KB | None | 0 0
  1.  
  2. local ScreenGuii = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local ImageLabel = Instance.new("ImageLabel")
  5. local TextButton = Instance.new("TextButton")
  6. local ImageButton = Instance.new("ImageButton")
  7.  
  8. --Properties:
  9.  
  10. ScreenGuii.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  11. ScreenGuii.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGuii
  14. Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  15. Frame.BorderColor3 = Color3.fromRGB(170, 0, 255)
  16. Frame.BorderSizePixel = 0
  17. Frame.Position = UDim2.new(0.304878056, 0, 0.255583137, 0)
  18. Frame.Size = UDim2.new(0, 648, 0, 394)
  19.  
  20. ImageLabel.Parent = Frame
  21. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  22. ImageLabel.BorderColor3 = Color3.fromRGB(85, 0, 255)
  23. ImageLabel.BorderSizePixel = 32
  24. ImageLabel.Position = UDim2.new(-0.0462962948, 0, 0.0507614203, 0)
  25. ImageLabel.Size = UDim2.new(0, 648, 0, 394)
  26. ImageLabel.Image = "http://www.roblox.com/asset/?id=18636741547"
  27.  
  28.  
  29. ImageButton.Parent = ImageLabel
  30. ImageButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  31. ImageButton.BorderColor3 = Color3.fromRGB(0, 0, 0)
  32. ImageButton.BorderSizePixel = 0
  33. ImageButton.Position = UDim2.new(0.901234567, 0, -0.0507614203, 0)
  34. ImageButton.Size = UDim2.new(0, 94, 0, 87)
  35. ImageButton.Image = "http://www.roblox.com/asset/?id=18209598048"
  36. ImageButton.MouseButton1Down:Connect(function()
  37. ScreenGuii:Destroy()
  38. end)
  39.  
Advertisement
Add Comment
Please, Sign In to add comment