Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- wait()
- print("FacePlayer by ASBF loaded")
- oldanbient = game.Lighting.OutdoorAmbient
- gui = Instance.new("ScreenGui")
- gui.Parent = game.Players.LocalPlayer.PlayerGui
- frame = Instance.new("Frame")
- frame.Parent = gui
- frame.Size = UDim2.new(0.1, 0, .1, 0)
- frame.Position = UDim2.new(0.6,0,0,0)
- button = Instance.new("TextButton")
- button.Parent = gui.Frame
- button.Size = UDim2.new(1, 0, 0.4, 0)
- button.Text = "Chat"
- imput = Instance.new("TextBox")
- imput.Parent = frame
- imput.Size = UDim2.new(1, 0, 0.4, 0)
- imput.Position = UDim2.new(0.0, 0, 0.4, 0)
- imput.Text = "plr"
- id = Instance.new("TextBox")
- id.Parent = frame
- id.Size = UDim2.new(1, 0, 0.4, 0)
- id.Position = UDim2.new(0.0, 0, 0.9, 0)
- id.Text = "txt"
- function onClick(v)
- game:GetService("Chat"):Chat(workspace[imput.Text].Head,id.Text)
- end
- button.MouseButton1Down:connect(onClick)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement