p_z

GUI_Intro

p_z
Mar 23rd, 2019
290
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.36 KB | None | 0 0
  1. -- === [[ F.O.E ]] ===
  2. -- Made by Scripteria
  3.  
  4. local p = game.Players.LocalPlayer
  5.  
  6. local ui = Instance.new("ScreenGui",p.PlayerGui)
  7. ui.Name = "=== [[ F.O.E ]] ==="
  8.  
  9. local intro = Instance.new("Frame",ui)
  10. intro.Name = "Hello!:"
  11. intro.Visible = true
  12. intro.BackgroundColor3 = Color3.new(33,33,33)
  13. intro.Size = UDim2.new(0,270,0,237)
  14. intro.Position = UDim2.new(0.397,0,0.327,0)
  15. intro.Active = true
  16. intro.Draggable = true
  17.  
  18. local credits = Instance.new("TextLabel",intro)
  19. credits.Name = "I am.."
  20. credits.Visible = true
  21. credits.BackgroundColor3 = Color3.new(33,33,33)
  22. credits.Size = UDim2.new(0,270,0,191)
  23. credits.Position = UDim2.new(0,0,0,0)
  24. credits.Text = "=== [[ F.O.E ]] === This GUI was made by Scripteria. Enjoy! === [[ F.O.E ]] ==="
  25. credits.TextColor3 = Color3.new(0,0,0)
  26. credits.TextScaled = true
  27. credits.Font = "Garamond"
  28.  
  29. local close_intro = Instance.new("TextButton",intro)
  30. close_intro.Name = "mmm_p"
  31. close_intro.Visible = true
  32. close_intro.BackgroundColor3 = Color3.new(33,33,33)
  33. close_intro.BorderColor3 = Color3.new(170,0,0)
  34. close_intro.Size = UDim2.new(0,200,0,29)
  35. close_intro.Position = UDim2.new(0.13,0,0.835,0)
  36. close_intro.Text = "CLOSE"
  37. close_intro.TextColor3 = Color3.new(170,61,61)
  38. close_intro.TextScaled = true
  39. close_intro.Font = "SourceSansSemibold"
  40. close_intro.MouseButton1Down:Connect(function()
  41.     script.Parent.Parent.Visible = false
  42. end)
Advertisement
Add Comment
Please, Sign In to add comment