Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.20 KB | None | 0 0
  1. -- Farewell infortality
  2. -- Revamp by ImFrostic, Version 2.8
  3.  
  4. -- Objects
  5.  
  6. local ScreenGui = Instance.new("ScreenGui")
  7. local Frame = Instance.new("Frame")
  8. local TextLabel = Instance.new("TextBox")
  9. local TextButton = Instance.new("TextButton")
  10.  
  11. -- Properties
  12.  
  13. ScreenGui.Parent = game.Players.CrimsonWasTaken.PlayerGui
  14.  
  15. Frame.Parent = ScreenGui
  16. Frame.BackgroundColor3 = Color3.new(1, 1, 1)
  17. Frame.Position = UDim2.new(0.13727811, 0, 0.0811638609, 0)
  18. Frame.Size = UDim2.new(0, 439, 0, 226)
  19.  
  20. TextLabel.Parent = Frame
  21. TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
  22. TextLabel.Position = UDim2.new(0.272209555, 0, 0.221238941, 0)
  23. TextLabel.Size = UDim2.new(0, 200, 0, 50)
  24. TextLabel.Font = Enum.Font.SourceSans
  25. TextLabel.TextSize = 14
  26.  
  27. TextButton.Parent = Frame
  28. TextButton.BackgroundColor3 = Color3.new(1, 1, 1)
  29. TextButton.Position = UDim2.new(0.27334851, 0, 0.694690287, 0)
  30. TextButton.Size = UDim2.new(0, 200, 0, 50)
  31. TextButton.Font = Enum.Font.SourceSans
  32. TextButton.TextSize = 14
  33.  
  34. -- Scripts
  35. TextButton.MouseButton1Click:connect(function()
  36. local plr = TextLabel.Text
  37. local players = game:GetService('Players')
  38. local vic = players:WaitForChild(plr)
  39. wait()
  40. vic:Kick('Bye Bye ;)')
  41. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement