vlogergamer

Fly

Dec 11th, 2021
23
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.92 KB | None | 0 0
  1. -- Instances:
  2.  
  3. local fly = Instance.new("ScreenGui")
  4. local epic = Instance.new("Frame")
  5. local backgroundtitle = Instance.new("TextLabel")
  6. local creator = Instance.new("TextLabel")
  7. local title = Instance.new("TextLabel")
  8. local close = Instance.new("TextButton")
  9. local flybutton = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. fly.Name = "fly"
  14. fly.Parent = game.CoreGui
  15. fly.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. epic.Name = "epic"
  18. epic.Parent = fly
  19. epic.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  20. epic.Position = UDim2.new(0.0911376476, 0, 0.466830462, 0)
  21. epic.Size = UDim2.new(0, 181, 0, 178)
  22. epic.Active = true
  23. epic.Draggable = true
  24.  
  25. backgroundtitle.Name = "backgroundtitle"
  26. backgroundtitle.Parent = epic
  27. backgroundtitle.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  28. backgroundtitle.Size = UDim2.new(0, 182, 0, 43)
  29. backgroundtitle.Font = Enum.Font.SciFi
  30. backgroundtitle.Text = ""
  31. backgroundtitle.TextColor3 = Color3.fromRGB(0, 0, 0)
  32. backgroundtitle.TextScaled = true
  33. backgroundtitle.TextSize = 14.000
  34. backgroundtitle.TextWrapped = true
  35.  
  36. creator.Name = "creator"
  37. creator.Parent = epic
  38. creator.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  39. creator.Position = UDim2.new(0.00442049652, 0, 0.762519121, 0)
  40. creator.Size = UDim2.new(0, 181, 0, 42)
  41. creator.Font = Enum.Font.SourceSans
  42. creator.Text = "Epic fly GUI Subscribe to Mele Studios"
  43. creator.TextColor3 = Color3.fromRGB(0, 0, 0)
  44. creator.TextScaled = true
  45. creator.TextSize = 14.000
  46. creator.TextWrapped = true
  47.  
  48. title.Name = "title"
  49. title.Parent = epic
  50. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  51. title.BackgroundTransparency = 1.000
  52. title.Position = UDim2.new(0.0497237556, 0, 0, 0)
  53. title.Size = UDim2.new(0, 119, 0, 43)
  54. title.Font = Enum.Font.SciFi
  55. title.Text = "Fly"
  56. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  57. title.TextScaled = true
  58. title.TextSize = 14.000
  59. title.TextWrapped = true
  60.  
  61. close.Name = "close"
  62. close.Parent = epic
  63. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  64. close.Position = UDim2.new(0.76795578, 0, 0, 0)
  65. close.Size = UDim2.new(0, 43, 0, 43)
  66. close.Font = Enum.Font.GothamBlack
  67. close.Text = "X"
  68. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  69. close.TextScaled = true
  70. close.TextSize = 14.000
  71. close.TextWrapped = true
  72. close.MouseButton1Down:connect(function()
  73. epic.Visible = false
  74. end)
  75.  
  76. flybutton.Name = "flybutton"
  77. flybutton.Parent = epic
  78. flybutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  79. flybutton.Position = UDim2.new(0.243093923, 0, 0.344781578, 0)
  80. flybutton.Size = UDim2.new(0, 84, 0, 42)
  81. flybutton.Font = Enum.Font.SourceSans
  82. flybutton.Text = "Click me to Fly"
  83. flybutton.TextColor3 = Color3.fromRGB(255, 0, 0)
  84. flybutton.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  85. flybutton.TextSize = 14.000
  86. flybutton.MouseButton1Down:connect(function()
  87. loadstring(game:HttpGet("https://pastebin.com/raw/7rXZ9VNc", true))()
  88. flybutton.Text = "Press E to fly and unfly"
  89. flybutton.TextSize = 10.000
  90. end)
  91.  
Advertisement
Add Comment
Please, Sign In to add comment