Advertisement
rrixh

spell out kusswords

Jul 30th, 2023
2,016
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.01 KB | None | 0 0
  1. local CoolGUI = Instance.new("ScreenGui")
  2. local MainGUI = Instance.new("Frame")
  3. local TextBox = Instance.new("TextBox")
  4. local ActivateBTN = Instance.new("TextButton")
  5. local UICorner = Instance.new("UICorner")
  6. local UICorner_2 = Instance.new("UICorner")
  7. local IntroductionGUI = Instance.new("Frame")
  8. local UICorner_3 = Instance.new("UICorner")
  9. local TextLabel = Instance.new("TextLabel")
  10.  
  11. CoolGUI.Name = "CoolGUI"
  12. CoolGUI.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
  13. CoolGUI.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  14.  
  15. MainGUI.Name = "MainGUI"
  16. MainGUI.Parent = CoolGUI
  17. MainGUI.AnchorPoint = Vector2.new(0.5, 0.5)
  18. MainGUI.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  19. MainGUI.BorderSizePixel = 0
  20. MainGUI.Position = UDim2.new(0.5, 0, -1, 0)
  21. MainGUI.Size = UDim2.new(0, 556, 0, 36)
  22.  
  23. TextBox.Parent = MainGUI
  24. TextBox.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  25. TextBox.BackgroundTransparency = 1.000
  26. TextBox.BorderSizePixel = 0
  27. TextBox.Size = UDim2.new(0.881578922, 0, 1, 0)
  28. TextBox.Font = Enum.Font.Gotham
  29. TextBox.PlaceholderText = "Insert Word Here"
  30. TextBox.Text = ""
  31. TextBox.TextColor3 = Color3.fromRGB(255, 255, 255)
  32. TextBox.TextSize = 14.000
  33.  
  34. ActivateBTN.Name = "ActivateBTN"
  35. ActivateBTN.Parent = MainGUI
  36. ActivateBTN.BackgroundColor3 = Color3.fromRGB(25, 25, 25)
  37. ActivateBTN.BorderSizePixel = 0
  38. ActivateBTN.Position = UDim2.new(0.881578922, 0, 0, 0)
  39. ActivateBTN.Size = UDim2.new(0.118421055, 0, 1, 0)
  40. ActivateBTN.Font = Enum.Font.GothamBold
  41. ActivateBTN.Text = "<"
  42. ActivateBTN.TextColor3 = Color3.fromRGB(255, 255, 255)
  43. ActivateBTN.TextSize = 20.000
  44.  
  45. UICorner.Parent = ActivateBTN
  46.  
  47. UICorner_2.Parent = MainGUI
  48.  
  49. IntroductionGUI.Name = "IntroductionGUI"
  50. IntroductionGUI.Parent = CoolGUI
  51. IntroductionGUI.AnchorPoint = Vector2.new(0.5, 0.5)
  52. IntroductionGUI.BackgroundColor3 = Color3.fromRGB(15, 15, 15)
  53. IntroductionGUI.BorderSizePixel = 0
  54. IntroductionGUI.Position = UDim2.new(0.5, 0, -1, 0)
  55. IntroductionGUI.Size = UDim2.new(0, 556, 0, 36)
  56.  
  57. UICorner_3.Parent = IntroductionGUI
  58.  
  59. TextLabel.Parent = IntroductionGUI
  60. TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  61. TextLabel.BackgroundTransparency = 1.000
  62. TextLabel.BorderSizePixel = 0
  63. TextLabel.Size = UDim2.new(1, 0, 1, 0)
  64. TextLabel.Font = Enum.Font.GothamBold
  65. TextLabel.Text = "Welcome to Kaid's Bypasser, Press L to Activate the GUI."
  66. TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  67. TextLabel.TextSize = 14.000
  68.  
  69. local function GXNXTWW_fake_script()
  70. local script = Instance.new('LocalScript', MainGUI)
  71.  
  72. local Mouse = game.Players.LocalPlayer:GetMouse()
  73. local isappeared = false
  74.  
  75. Mouse.KeyDown:Connect(function(k)
  76. if k == "l" then
  77. if isappeared == false then
  78. script.Parent:TweenPosition(UDim2.new(0.5,0,0.2,0), "Out", "Quad", 0.5, true)
  79. isappeared = true
  80. else
  81. script.Parent:TweenPosition(UDim2.new(0.5,0,-1,0), "Out", "Quad", 0.5, true)
  82. isappeared = false
  83. end
  84. end
  85. end)
  86.  
  87. script.Parent.ActivateBTN.MouseButton1Click:connect(function()
  88. -- Chat bypass script by Kaid#0001 :3
  89. script.Parent.ActivateBTN.BackgroundColor3 = Color3.new(0.180392, 0.870588, 0.239216)
  90.  
  91. local message = script.Parent.TextBox.Text
  92.  
  93. math.randomseed(tick())
  94. local ChatMain = require(game:GetService("Players").LocalPlayer.PlayerScripts.ChatScript.ChatMain)
  95.  
  96. local function bypass()
  97. ChatMain.MessagePosted:fire("dffhdfshfd"..math.random(100000,1000000))
  98. ChatMain.MessagesChanged:fire(math.random(100000,1000000))
  99. end
  100.  
  101. for v in message:gmatch"." do
  102. wait(.5)
  103. game:GetService("ReplicatedStorage").DefaultChatSystemChatEvents.SayMessageRequest:FireServer(v, "All")
  104. wait(.5)
  105. bypass()
  106. end
  107.  
  108. wait(1)
  109.  
  110. script.Parent.ActivateBTN.BackgroundColor3 = Color3.new(0.0980392, 0.0980392, 0.0980392)
  111. end)
  112. end
  113. coroutine.wrap(GXNXTWW_fake_script)()
  114. local function KDEKJQX_fake_script()
  115. local script = Instance.new('LocalScript', IntroductionGUI)
  116.  
  117. wait(1)
  118. script.Parent:TweenPosition(UDim2.new(0.5,0,0.2,0), "Out", "Quad", 0.5, true)
  119. wait(3)
  120. script.Parent:TweenPosition(UDim2.new(0.5,0,-1,0), "Out", "Quad", 0.5, true)
  121. end
  122. coroutine.wrap(KDEKJQX_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement