Advertisement
4bxf

FE Gui Activation

Feb 20th, 2020
113
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. --made by 4bxf#7943
  2.  
  3.  
  4. -- Instances:
  5.  
  6. local feguiactivation = Instance.new("ScreenGui")
  7. local main = Instance.new("Frame")
  8. local title = Instance.new("TextLabel")
  9. local button = Instance.new("TextButton")
  10.  
  11. --Properties:
  12.  
  13. feguiactivation.Name = "feguiactivation"
  14. feguiactivation.Parent = game.CoreGui
  15. feguiactivation.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  16.  
  17. main.Name = "main"
  18. main.Parent = feguiactivation
  19. main.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  20. main.BorderColor3 = Color3.fromRGB(255, 255, 255)
  21. main.Position = UDim2.new(0.0244547129, 0, 0.700245738, 0)
  22. main.Size = UDim2.new(0, 225, 0, 215)
  23. main.Draggable = true
  24.  
  25. title.Name = "title"
  26. title.Parent = main
  27. title.Active = true
  28. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  29. title.Size = UDim2.new(0, 225, 0, 25)
  30. title.Font = Enum.Font.Cartoon
  31. title.Text = "FE Gui Activation"
  32. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  33. title.TextScaled = true
  34. title.TextSize = 14.000
  35. title.TextWrapped = true
  36.  
  37. button.Name = "button"
  38. button.Parent = main
  39. button.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  40. button.Position = UDim2.new(0.0533333346, 0, 0.38139534, 0)
  41. button.Size = UDim2.new(0, 200, 0, 50)
  42. button.Font = Enum.Font.Cartoon
  43. button.Text = "Activation"
  44. button.TextColor3 = Color3.fromRGB(0, 0, 0)
  45. button.TextScaled = true
  46. button.TextSize = 14.000
  47. button.TextWrapped = true
  48. loadstring(game:HttpGet("https://pastebin.com/U290qDC2",true))()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement