Auto Win Wordie Mobile Script

Roblox Scripts is what Roblox players and coders use to build interactive games. To be more specific, players use Lua scripts a popular scripting and programming language.

BloxScript4You


Instruction
1.Open Roblox And Start Playing
2.Click The Blue Circle To Copy The Script Code
3.Paste The Script Code Into Your Executor
4.Then Execute The Script Code
5.Enjoy
Script Code
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 fireCheckWordEvent()
    local currentWord = currentWordObject.Value
    local args = {
        [1] = currentWord
    }
    checkWordEvent:FireServer(unpack(args))
end

currentWordObject.Changed:Connect(fireCheckWordEvent)

fireCheckWordEvent() 

Select Game [A-Z]