Upscalefanatic3

GUI FOR FRIENDS Script

Mar 2nd, 2019
348
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.05 KB | None | 0 0
  1. -- Farewell Infortality.
  2. -- Version: 2.82
  3. -- Instances:
  4. local Guiparaamigos = Instance.new("ScreenGui")
  5. local AbrirA = Instance.new("Frame")
  6. local AbrirB = Instance.new("TextButton")
  7. local GUI = Instance.new("Frame")
  8. local fly = Instance.new("TextButton")
  9. local noclip = Instance.new("TextButton")
  10. local bbgui = Instance.new("TextButton")
  11. local mcgui = Instance.new("TextButton")
  12. local cerrar = Instance.new("TextButton")
  13. --Properties:
  14. Guiparaamigos.Name = "Gui para amigos"
  15. Guiparaamigos.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  16. Guiparaamigos.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  17.  
  18. AbrirA.Name = "AbrirA"
  19. AbrirA.Parent = Guiparaamigos
  20. AbrirA.BackgroundColor3 = Color3.new(0, 0, 0)
  21. AbrirA.Position = UDim2.new(0, 0, 0.862135887, 0)
  22. AbrirA.Size = UDim2.new(0, 100, 0, 71)
  23.  
  24. AbrirB.Name = "AbrirB"
  25. AbrirB.Parent = AbrirA
  26. AbrirB.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  27. AbrirB.Position = UDim2.new(0.0396075882, 0, 0.134636968, 0)
  28. AbrirB.Size = UDim2.new(0, 92, 0, 50)
  29. AbrirB.Font = Enum.Font.SourceSans
  30. AbrirB.Text = "Abrir"
  31. AbrirB.TextColor3 = Color3.new(0, 0, 0)
  32. AbrirB.TextSize = 14
  33. AbrirB.MouseButton1Down:connect(function()
  34. GUI.Visible = true
  35. AbrirA.Visible = false
  36. end)
  37.  
  38. GUI.Name = "GUI"
  39. GUI.Parent = Guiparaamigos
  40. GUI.BackgroundColor3 = Color3.new(0, 0, 0)
  41. GUI.Position = UDim2.new(0.79092586, 0, -3.7252903e-09, 0)
  42. GUI.Size = UDim2.new(0, 248, 0, 222)
  43.  
  44. fly.Name = "fly"
  45. fly.Parent = GUI
  46. fly.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  47. fly.Position = UDim2.new(0.205662489, 0, -0.00263627619, 0)
  48. fly.Size = UDim2.new(0, 200, 0, 50)
  49. fly.Font = Enum.Font.SourceSans
  50. fly.Text = "Fly"
  51. fly.TextColor3 = Color3.new(0, 0, 0)
  52. fly.TextSize = 20
  53.  
  54. noclip.Name = "noclip"
  55. noclip.Parent = GUI
  56. noclip.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  57. noclip.Position = UDim2.new(-0.00363897509, 0, 0.219082594, 0)
  58. noclip.Size = UDim2.new(0, 251, 0, 50)
  59. noclip.Font = Enum.Font.SourceSans
  60. noclip.Text = "No-Clip"
  61. noclip.TextColor3 = Color3.new(0, 0, 0)
  62. noclip.TextSize = 20
  63.  
  64. bbgui.Name = "bbgui"
  65. bbgui.Parent = GUI
  66. bbgui.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  67. bbgui.Position = UDim2.new(0, 0, 0.666026831, 0)
  68. bbgui.Size = UDim2.new(0, 251, 0, 74)
  69. bbgui.Font = Enum.Font.SourceSans
  70. bbgui.Text = "BoogaBoogaGui"
  71. bbgui.TextColor3 = Color3.new(0, 0, 0)
  72. bbgui.TextSize = 20
  73.  
  74. mcgui.Name = "mcgui"
  75. mcgui.Parent = GUI
  76. mcgui.BackgroundColor3 = Color3.new(0.666667, 0, 0)
  77. mcgui.Position = UDim2.new(0, 0, 0.441799819, 0)
  78. mcgui.Size = UDim2.new(0, 251, 0, 50)
  79. mcgui.Font = Enum.Font.SourceSans
  80. mcgui.Text = "MadCityGui"
  81. mcgui.TextColor3 = Color3.new(0, 0, 0)
  82. mcgui.TextSize = 20
  83. mcgui.TextWrapped = true
  84.  
  85. cerrar.Name = "cerrar"
  86. cerrar.Parent = GUI
  87. cerrar.BackgroundColor3 = Color3.new(1, 0, 0)
  88. cerrar.Position = UDim2.new(-0.00363916159, 0, -0.00609902292, 0)
  89. cerrar.Size = UDim2.new(0, 52, 0, 50)
  90. cerrar.Font = Enum.Font.SourceSans
  91. cerrar.Text = "X"
  92. cerrar.TextColor3 = Color3.new(0, 0, 0)
  93. cerrar.TextSize = 32
  94. cerrar.MouseButton1Down:connect(function()
  95. AbrirB.Visible = true
  96. GUI.Visible = false
  97. end)
  98. -- Scripts:
Add Comment
Please, Sign In to add comment