Advertisement
yonidrori

Untitled

Oct 17th, 2015
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. --Talking GUI make your enemies speak (EVEN GUESTS) SavageMunkey made this!!
  2. player1 = game.Players.Persons Name---Replace this with your target's name.
  3. Owner = "abakarir"--Your Name...
  4. Player = game.Players:findFirstChild(Owner).PlayerGui
  5.  
  6.  
  7. Gui = Instance.new("ScreenGui")
  8. Gui.Parent = Player
  9. Gui.Name = "Gui"
  10.  
  11.  
  12. e = Instance.new("TextBox")
  13. e.Parent = Gui
  14. e.Name = "Type"
  15. e.Text = ""
  16. e.Size = UDim2.new(0, 100, 0, 25)
  17. e.Position = UDim2.new(0, 0, 0, 400)
  18. e.TextColor3 = Color3.new(10, 10, 10)
  19. e.BorderColor3 = Color3.new(0, 0, 0)
  20. e.BackgroundColor3 = Color3.new(0, 0, 0)
  21. ------------------------------------------------------------
  22. --------------The Actual Script-----------------------------
  23. ------------------------------------------------------------
  24.  
  25.  
  26. while true do
  27. wait(0.5)
  28. game:GetService("Chat"):Chat(player1.Character.Head, e.Text.."What you want them to say") --put character in between p1 and head if fails
  29. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement