Advertisement
TickleMeElmo798

chatspooferV2

Sep 22nd, 2022
22
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.19 KB | None | 0 0
  1. local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
  2. local SubmitButton
  3.  
  4. local UI =
  5. Material.Load(
  6. {
  7. Title = "Chat Spoofer V2 By TickleMeElmo",
  8. Style = 2,
  9. SizeX = 400,
  10. SizeY = 220,
  11. Theme = "Ocean"
  12. }
  13. )
  14.  
  15. local Page =
  16. UI.New(
  17. {
  18. Title = "Main Page"
  19. }
  20. )
  21.  
  22. -- aardappel
  23.  
  24. local OwnMessage =
  25. Page.TextField(
  26. {
  27. Text = "Your own message",
  28. Callback = function(value)
  29. SubmitButton:SetText("Send (" .. CheckCount() .. "/39)")
  30. end,
  31. Menu = {
  32. Information = function(self)
  33. UI.Banner(
  34. {
  35. Text = "You will send this message as yourself (required for the method). Use something meaningful to avoid suspicion."
  36. }
  37. )
  38. end
  39. }
  40. }
  41. )
  42.  
  43. local SpoofName =
  44. Page.TextField(
  45. {
  46. Text = "Name to spoof",
  47. Callback = function(value)
  48. SubmitButton:SetText("Send (" .. CheckCount() .. "/39)")
  49. end,
  50. Menu = {
  51. Information = function(self)
  52. UI.Banner(
  53. {
  54. Text = "The name between the brackets, like \"Roblox\" or \"Server\"."
  55. }
  56. )
  57. end
  58. }
  59. }
  60. )
  61.  
  62. local SpoofMessage =
  63. Page.TextField(
  64. {
  65. Text = "Spoof message",
  66. Callback = function(value)
  67. SubmitButton:SetText("Send (" .. CheckCount() .. "/39)")
  68. end,
  69. Menu = {
  70. Information = function(self)
  71. UI.Banner(
  72. {
  73. Text = "The message that the victim will say."
  74. }
  75. )
  76. end
  77. }
  78. }
  79. )
  80.  
  81. SubmitButton =
  82. Page.Button(
  83. {
  84. Text = "Send (0/39)",
  85. Callback = function()
  86. if CheckCount() > 39 then
  87. UI.Banner({
  88. Text = "This method only allows up to 39 characters. Try using a shorter message or victim name."
  89. })
  90. else
  91. message =
  92. "" ..
  93. tostring(OwnMessage:GetText()) ..
  94. " [" ..
  95. tostring(SpoofName:GetText()) .. "]: " .. tostring(SpoofMessage:GetText())
  96. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(message, "All")
  97. end
  98. end
  99. }
  100. )
  101.  
  102. function CheckCount()
  103. local TotalChars = #OwnMessage:GetText() + #SpoofName:GetText() + #SpoofMessage:GetText()
  104. return TotalChars
  105. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement