Сontent continues after AD

Сontent continues after AD

Сontent continues after AD

Script – Wordie

Thank you for using our website
Your script:

				
					local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")

local player = Players.LocalPlayer
while not player do
    Players.PlayerAdded:Wait()
    player = Players.LocalPlayer
end

local eventsFolder = ReplicatedStorage:WaitForChild("Events")
local checkWordEvent = eventsFolder:WaitForChild("CheckWordEvent")

local currentWordObject = player:WaitForChild("Statistics"):WaitForChild("Game"):WaitForChild("CurrentWord")

local function fireCheckWordAuto WinEvent()
    local currentWord = currentWordObject.Value
    local args = {
        [1] = currentWord
    }
    checkWordEvent:FireServer(unpack(args))
end

currentWordObject.Changed:Connect(fireCheckWordEvent)

fireCheckWordEvent() 
				
			

if the script does not work, try other scripts on our website

How about trying out new scripts?