xxPH4NTOM

Untitled

Mar 9th, 2021 (edited)
195
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.82 KB | None | 0 0
  1. -- Instances:
  2. local ScreenGui = Instance.new("ScreenGui")
  3. local Frame = Instance.new("Frame")
  4. local Title = Instance.new("TextLabel")
  5. local Text = Instance.new("TextLabel")
  6. local Text2 = Instance.new("TextLabel")
  7. local Text3 = Instance.new("TextLabel")
  8. local AdminName = Instance.new("TextLabel")
  9. local RedirectNow = Instance.new("TextButton")
  10.  
  11. --Properties:
  12. ScreenGui.Parent = game:GetService('CoreGui')
  13. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14. ScreenGui.DisplayOrder = 2147483647
  15. ScreenGui.ResetOnSpawn = false
  16. ScreenGui.IgnoreGuiInset = true
  17.  
  18. Frame.Parent = ScreenGui
  19. Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  20. Frame.BorderSizePixel = 0
  21. Frame.Size = UDim2.new(1, 0, 1, 0)
  22.  
  23. Title.Name = "Title"
  24. Title.Parent = Frame
  25. Title.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  26. Title.BorderSizePixel = 0
  27. Title.Size = UDim2.new(1, 0, 0.150000006, 0)
  28. Title.Font = Enum.Font.Bangers
  29. Title.Text = "EZSTATS"
  30. Title.TextColor3 = Color3.fromRGB(215, 215, 215)
  31. Title.TextScaled = true
  32. Title.TextSize = 14.000
  33. Title.TextWrapped = true
  34.  
  35. Text.Name = "Text"
  36. Text.Parent = Frame
  37. Text.AnchorPoint = Vector2.new(0, 0.5)
  38. Text.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  39. Text.BorderSizePixel = 0
  40. Text.Position = UDim2.new(0, 0, 0.349999994, 0)
  41. Text.Size = UDim2.new(1, 0, 0.075000003, 0)
  42. Text.Font = Enum.Font.SourceSansSemibold
  43. Text.Text = "What happened?"
  44. Text.TextColor3 = Color3.fromRGB(215, 215, 215)
  45. Text.TextSize = 48.000
  46. Text.TextWrapped = true
  47.  
  48. Text2.Name = "Text2"
  49. Text2.Parent = Frame
  50. Text2.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  51. Text2.BorderSizePixel = 0
  52. Text2.LayoutOrder = 3
  53. Text2.Position = UDim2.new(0, 0, 0.386778772, 0)
  54. Text2.Size = UDim2.new(1, 0, 0.200000003, 0)
  55. Text2.Font = Enum.Font.SourceSansSemibold
  56. Text2.Text = "While you were exploiting, a Football Fusion game moderator joined you.\nTo prevent them from seeing you exploit, we made you leave the game."
  57. Text2.TextColor3 = Color3.fromRGB(215, 215, 215)
  58. Text2.TextSize = 40.000
  59. Text2.TextWrapped = true
  60.  
  61. Text3.Name = "Text3"
  62. Text3.Parent = Frame
  63. Text3.AnchorPoint = Vector2.new(0, 0.5)
  64. Text3.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  65. Text3.BorderColor3 = Color3.fromRGB(15, 15, 15)
  66. Text3.BorderSizePixel = 5
  67. Text3.Position = UDim2.new(0, 0, 0.75, 0)
  68. Text3.Size = UDim2.new(1, 0, 0.0500000007, 0)
  69. Text3.Font = Enum.Font.SourceSansSemibold
  70. Text3.Text = "You will be redirected to a different server shortly."
  71. Text3.TextColor3 = Color3.fromRGB(215, 215, 215)
  72. Text3.TextSize = 48.000
  73. Text3.TextWrapped = true
  74.  
  75. AdminName.Name = "AdminName"
  76. AdminName.Parent = Frame
  77. AdminName.AnchorPoint = Vector2.new(0, 0.5)
  78. AdminName.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  79. AdminName.BorderColor3 = Color3.fromRGB(15, 15, 15)
  80. AdminName.BorderSizePixel = 5
  81. AdminName.Position = UDim2.new(0, 0, 0.61106199, 0)
  82. AdminName.Size = UDim2.new(1, 0, 0.0500000007, 0)
  83. AdminName.Font = Enum.Font.SourceSans
  84. AdminName.Text = "Moderator: " .. getgenv().adminName
  85. AdminName.TextColor3 = Color3.fromRGB(215, 215, 215)
  86. AdminName.TextScaled = true
  87. AdminName.TextSize = 48.000
  88. AdminName.TextWrapped = true
  89.  
  90. RedirectNow.Name = "RedirectNow"
  91. RedirectNow.Parent = Frame
  92. RedirectNow.AnchorPoint = Vector2.new(0.5, 0.5)
  93. RedirectNow.BackgroundColor3 = Color3.fromRGB(0, 255, 180)
  94. RedirectNow.BorderColor3 = Color3.fromRGB(15, 15, 15)
  95. RedirectNow.BorderSizePixel = 0
  96. RedirectNow.Position = UDim2.new(0.5, 0, 0.899999976, 0)
  97. RedirectNow.Size = UDim2.new(0.125, 0, 0.0500000007, 0)
  98. RedirectNow.Font = Enum.Font.SourceSansSemibold
  99. RedirectNow.Text = "Redirect Now"
  100. RedirectNow.TextColor3 = Color3.fromRGB(215, 215, 215)
  101. RedirectNow.TextScaled = true
  102. RedirectNow.TextSize = 14.000
  103. RedirectNow.TextStrokeTransparency = 0.500
  104. RedirectNow.TextWrapped = true
  105.  
  106. RedirectNow.MouseButton1Click:Connect(function()
  107. game:GetService'TeleportService':Teleport(3694166020)
  108. end)
Add Comment
Please, Sign In to add comment