mikldapikl

uncensored chat

Feb 10th, 2018
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.38 KB | None | 0 0
  1. if game.Players.LocalPlayer.PlayerGui:FindFirstChild("hah") then
  2. game.Players.LocalPlayer.PlayerGui.hah:Destroy()
  3. end
  4. local NameGui = Instance.new("ScreenGui")
  5. local Name = Instance.new("Frame")
  6. local idk = Instance.new("TextBox")
  7. local dsa = Instance.new("TextButton")
  8. local ChatService = game:GetService("Chat")
  9.  
  10. NameGui.Name = "hah"
  11. NameGui.Parent = game.Players.LocalPlayer.PlayerGui
  12.  
  13. Name.Name = "haah"
  14. Name.Parent = NameGui
  15. Name.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  16. Name.BorderColor3 = Color3.new(0, 0, 0)
  17. Name.Position = UDim2.new(0, 0, 0, 0)
  18. Name.Size = UDim2.new(0.3, 0, 0.05, 0)
  19.  
  20. idk.Name = "idk"
  21. idk.Parent = Name
  22. idk.BackgroundColor3 = Color3.new(0.235294, 0.235294, 0.235294)
  23. idk.BorderColor3 = Color3.new(0, 0, 0)
  24. idk.Size = UDim2.new(1, 0, 1, 0)
  25. idk.Font = Enum.Font.SciFi
  26. idk.FontSize = Enum.FontSize.Size14
  27. idk.Text = "' to chat"
  28. idk.TextColor3 = Color3.new(1, 1, 1)
  29. idk.TextScaled = true
  30. idk.TextStrokeTransparency = 0
  31. idk.TextWrapped = true
  32.  
  33.  
  34. idk.FocusLost:connect(function(enterPressed)
  35. if string.len(idk.Text) ~= 0 then
  36. ChatService:Chat(game.Players.LocalPlayer.Character.Head, idk.Text, "Red")
  37. end
  38. idk.Text = "' to chat"
  39. idk:ReleaseFocus()
  40. end)
  41.  
  42. local Mouse = game.Players.LocalPlayer:GetMouse()
  43.  
  44. Mouse.KeyDown:connect(function(Key)
  45. if Key:lower() == "'" then
  46. idk:CaptureFocus()
  47. end
  48. end)
Add Comment
Please, Sign In to add comment