Thank you for using our website
Your script:
local Players = game:GetService("Players")
local plr = Players.LocalPlayer
local char = plr.Character or plr.CharacterAdded:Wait()
local hrp = char:WaitForChild("HumanoidRootPart")
local touchPart = workspace.Map.Zones["10"].WinPart.Touch
— GUI
local ScreenGui = Instance.new("ScreenGui", plr.PlayerGui)
local Btn = Instance.new("TextButton", ScreenGui)
Btn.Size = UDim2.new(0,160,0,50)
Btn.Position = UDim2.new(0.05,0,0.4,0)
Btn.Text = "Auto Touch: OFF"
Btn.BackgroundColor3 = Color3.fromRGB(150, 0, 0)
local auto = false
Btn.MouseButton1Click:Connect(function()
auto = not auto
Btn.Text = "Auto Touch: " .. (auto and "ON" or "OFF")
Btn.BackgroundColor3 = auto and Color3.fromRGB(0,150,0) or Color3.fromRGB(150,0,0)
end)
— Loop
task.spawn(function()
while true do
if auto then
firetouchinterest(hrp, touchPart, 0)
task.wait()
firetouchinterest(hrp, touchPart, 1)
end
task.wait(0.2) — adjust speed here
end
end)





