Advertisement
hubersrt1002

Version gui system

Jul 8th, 2023
15
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.28 KB | None | 0 0
  1. -- Version gui
  2. -- Version: 0.0.0.1
  3.  
  4. -- Instances:
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local ver = Instance.new("Frame")
  8. local ImageLabel = Instance.new("ImageLabel")
  9. local TextLabel = Instance.new("TextLabel")
  10. local TextLabel_2 = Instance.new("TextLabel")
  11.  
  12. --Properties:
  13.  
  14. ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  15. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16. ScreenGui.Name = "guh"
  17.  
  18. ver.Name = "ver"
  19. ver.Parent = ScreenGui
  20. ver.BackgroundColor3 = Color3.fromRGB(61, 61, 61)
  21. ver.BorderColor3 = Color3.fromRGB(111, 111, 111)
  22. ver.BorderSizePixel = 0
  23. ver.Position = UDim2.new(0.660760045, 0, 0.743801713, 0)
  24. ver.Size = UDim2.new(0, 317, 0, 148)
  25. wait(4)
  26. ver:TweenPosition(UDim2.new(0.661, 0,-0.002, 0),"Out",Enum.EasingStyle.Linear,0.5,true)
  27. wait(0.5)
  28. ver:TweenPosition(UDim2.new(0, 0,-0.002, 0),"Out",Enum.EasingStyle.Linear,0.5,true)
  29. wait(0.5)
  30. ScreenGui:Destroy()
  31.  
  32. ImageLabel.Parent = ver
  33. ImageLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  34. ImageLabel.BackgroundTransparency = 1.000
  35. ImageLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  36. ImageLabel.BorderSizePixel = 0
  37. ImageLabel.Size = UDim2.new(0, 100, 0, 88)
  38. ImageLabel.Image = "rbxasset://textures/ui/GuiImagePlaceholder.png"
  39.  
  40. TextLabel.Parent = ver
  41. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  42. TextLabel.BackgroundTransparency = 1.000
  43. TextLabel.BorderColor3 = Color3.fromRGB(0, 0, 0)
  44. TextLabel.BorderSizePixel = 0
  45. TextLabel.Position = UDim2.new(0.0410094634, 0, 0.594594598, 0)
  46. TextLabel.Size = UDim2.new(0, 247, 0, 60)
  47. TextLabel.Font = Enum.Font.SourceSans
  48. TextLabel.Text = "version"
  49. TextLabel.TextColor3 = Color3.fromRGB(151, 255, 15)
  50. TextLabel.TextScaled = true
  51. TextLabel.TextSize = 14.000
  52. TextLabel.TextWrapped = true
  53.  
  54. TextLabel_2.Parent = ver
  55. TextLabel_2.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  56. TextLabel_2.BackgroundTransparency = 1.000
  57. TextLabel_2.BorderColor3 = Color3.fromRGB(0, 0, 0)
  58. TextLabel_2.BorderSizePixel = 0
  59. TextLabel_2.Position = UDim2.new(0.31861192, 0, -0.0202702694, 0)
  60. TextLabel_2.Size = UDim2.new(0, 216, 0, 94)
  61. TextLabel_2.Font = Enum.Font.SourceSans
  62. TextLabel_2.Text = "0.0.0.1"
  63. TextLabel_2.TextColor3 = Color3.fromRGB(255, 0, 0)
  64. TextLabel_2.TextScaled = true
  65. TextLabel_2.TextSize = 14.000
  66. TextLabel_2.TextWrapped = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement