Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Material = loadstring(game:HttpGet("https://raw.githubusercontent.com/Kinlei/MaterialLua/master/Module.lua"))()
- local SubmitButton
- local UI =
- Material.Load(
- {
- Title = "Chat Spoofer V2 By TickleMeElmo",
- Style = 2,
- SizeX = 400,
- SizeY = 220,
- Theme = "Ocean"
- }
- )
- local Page =
- UI.New(
- {
- Title = "Main Page"
- }
- )
- -- aardappel
- local OwnMessage =
- Page.TextField(
- {
- Text = "Your own message",
- Callback = function(value)
- SubmitButton:SetText("Send (" .. CheckCount() .. "/39)")
- end,
- Menu = {
- Information = function(self)
- UI.Banner(
- {
- Text = "You will send this message as yourself (required for the method). Use something meaningful to avoid suspicion."
- }
- )
- end
- }
- }
- )
- local SpoofName =
- Page.TextField(
- {
- Text = "Name to spoof",
- Callback = function(value)
- SubmitButton:SetText("Send (" .. CheckCount() .. "/39)")
- end,
- Menu = {
- Information = function(self)
- UI.Banner(
- {
- Text = "The name between the brackets, like \"Roblox\" or \"Server\"."
- }
- )
- end
- }
- }
- )
- local SpoofMessage =
- Page.TextField(
- {
- Text = "Spoof message",
- Callback = function(value)
- SubmitButton:SetText("Send (" .. CheckCount() .. "/39)")
- end,
- Menu = {
- Information = function(self)
- UI.Banner(
- {
- Text = "The message that the victim will say."
- }
- )
- end
- }
- }
- )
- SubmitButton =
- Page.Button(
- {
- Text = "Send (0/39)",
- Callback = function()
- if CheckCount() > 39 then
- UI.Banner({
- Text = "This method only allows up to 39 characters. Try using a shorter message or victim name."
- })
- else
- message =
- "" ..
- tostring(OwnMessage:GetText()) ..
- " [" ..
- tostring(SpoofName:GetText()) .. "]: " .. tostring(SpoofMessage:GetText())
- game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(message, "All")
- end
- end
- }
- )
- function CheckCount()
- local TotalChars = #OwnMessage:GetText() + #SpoofName:GetText() + #SpoofMessage:GetText()
- return TotalChars
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement