Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local l = game.Players.LocalPlayer
- local textbar1 = Instance.new("TextBox")
- local screengui = Instance.new("ScreenGui")
- screengui.Parent = l.PlayerGui
- textbar1.Parent = screengui
- textbar1.Position = UDim2.new(0.375, 0, 0.1, 0)
- textbar1.Size = UDim2.new(0, 200, 0, 50)
- textbar1.BackgroundColor3 = Color3.new(255, 255, 255)
- textbar1.BackgroundTransparency = (0)
- while true do
- wait(0.1)
- player1 = game.Workspace:FindFirstChild(textbar1.Text)
- if player1 then
- player1:Remove()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement