Advertisement
dahpiglz

Untitled

Aug 11th, 2017
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. local l = game.Players.LocalPlayer
  2. local textbar1 = Instance.new("TextBox")
  3. local screengui = Instance.new("ScreenGui")
  4. screengui.Parent = l.PlayerGui
  5. textbar1.Parent = screengui
  6. textbar1.Position = UDim2.new(0.375, 0, 0.1, 0)
  7. textbar1.Size = UDim2.new(0, 200, 0, 50)
  8. textbar1.BackgroundColor3 = Color3.new(255, 255, 255)
  9. textbar1.BackgroundTransparency = (0)
  10. while true do
  11. wait(0.1)
  12. player1 = game.Workspace:FindFirstChild(textbar1.Text)
  13. if player1 then
  14. player1:Remove()
  15. end
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement