Advertisement
scriptingtales

testr

Mar 26th, 2021
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.83 KB | None | 0 0
  1. local ScreenGui = Instance.new("ScreenGui")
  2. local Frame = Instance.new("Frame")
  3. local Ban = Instance.new("TextButton")
  4. local Reason = Instance.new("TextBox")
  5. local Player = Instance.new("TextBox")
  6. local Error = Instance.new("TextLabel")
  7. local Title = Instance.new("TextLabel")
  8. local Toggle = Instance.new("TextButton")
  9.  
  10. ScreenGui.Parent = game.StarterGui
  11. ScreenGui.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  12.  
  13. Frame.Parent = ScreenGui
  14. Frame.BackgroundColor3 = Color3.new(0.0627451, 0.52549, 1)
  15. Frame.Position = UDim2.new(0.301990449, 0, 0.292010993, 0)
  16. Frame.Size = UDim2.new(0, 631, 0, 372)
  17.  
  18. Ban.Name = "Ban"
  19. Ban.Parent = Frame
  20. Ban.BackgroundColor3 = Color3.new(0.121569, 0.968628, 1)
  21. Ban.Position = UDim2.new(0.340728998, 0, 0.798387051, 0)
  22. Ban.Size = UDim2.new(0, 200, 0, 50)
  23. Ban.Font = Enum.Font.SciFi
  24. Ban.Text = "Kick Player"
  25. Ban.TextColor3 = Color3.new(0.988235, 0, 0.0235294)
  26. Ban.TextSize = 45
  27.  
  28. Reason.Name = "Reason"
  29. Reason.Parent = Frame
  30. Reason.BackgroundColor3 = Color3.new(1, 1, 1)
  31. Reason.Position = UDim2.new(0.217115685, 0, 0.427419364, 0)
  32. Reason.Size = UDim2.new(0, 359, 0, 119)
  33. Reason.Font = Enum.Font.SourceSans
  34. Reason.Text = "Reason"
  35. Reason.TextColor3 = Color3.new(0, 0, 0)
  36. Reason.TextSize = 19
  37. Reason.TextXAlignment = Enum.TextXAlignment.Left
  38. Reason.TextYAlignment = Enum.TextYAlignment.Top
  39.  
  40. Player.Name = "Player"
  41. Player.Parent = Frame
  42. Player.BackgroundColor3 = Color3.new(0.0980392, 0.788235, 1)
  43. Player.Position = UDim2.new(0.216076076, 0, 0.265951276, 0)
  44. Player.Size = UDim2.new(0, 359, 0, 50)
  45. Player.Font = Enum.Font.SourceSans
  46. Player.Text = "Enter Player Name"
  47. Player.TextColor3 = Color3.new(0, 0, 1)
  48. Player.TextSize = 24
  49.  
  50. Error.Name = "Error"
  51. Error.Parent = Frame
  52. Error.BackgroundColor3 = Color3.new(0.0627451, 0.52549, 1)
  53. Error.BorderColor3 = Color3.new(0.0627451, 0.52549, 1)
  54. Error.Position = UDim2.new(0.0935023725, 0, 0.153225809, 0)
  55. Error.Size = UDim2.new(0, 530, 0, 34)
  56. Error.Visible = false
  57. Error.Font = Enum.Font.SourceSans
  58. Error.Text = "Player does not exist"
  59. Error.TextColor3 = Color3.new(0.992157, 0.541176, 0.0313726)
  60. Error.TextScaled = true
  61. Error.TextSize = 44
  62. Error.TextStrokeTransparency = 2
  63. Error.TextWrapped = true
  64.  
  65. Title.Name = "Title"
  66. Title.Parent = Frame
  67. Title.BackgroundColor3 = Color3.new(0.00784314, 0.235294, 1)
  68. Title.Position = UDim2.new(0.00158478611, 0, 0, 0)
  69. Title.Size = UDim2.new(0, 631, 0, 50)
  70. Title.Font = Enum.Font.SourceSans
  71. Title.Text = "Kick GUI"
  72. Title.TextColor3 = Color3.new(0.988235, 0, 0.960784)
  73. Title.TextSize = 45
  74.  
  75. Toggle.Name = "Toggle"
  76. Toggle.Parent = ScreenGui
  77. Toggle.BackgroundColor3 = Color3.new(0.0823529, 0.666667, 1)
  78. Toggle.Position = UDim2.new(0, 0, 0.479338855, 0)
  79. Toggle.Size = UDim2.new(0, 272, 0, 85)
  80. Toggle.Font = Enum.Font.SciFi
  81. Toggle.Text = "Toggle GUI"
  82. Toggle.TextColor3 = Color3.new(0.988235, 0, 0.0627451)
  83. Toggle.TextSize = 56
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement