ADVERTISEMENTREMOVE ADS
Game icon

Walk 127 836 |Completions Auto Farm

Script preview thumbnail
Script Preview

Description

This script has no UI. As soon as you run it, it automatically starts farming Completions.

Tested with

ADVERTISEMENTREMOVE ADS
26 Lines β€’ 1009 Bytes
Raw
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local player = Players.LocalPlayer
local targetPosition = CFrame.new(12222, 8, -382700)
while true do
local character = player.Character or player.CharacterAdded:Wait()
local humanoidRootPart = character:WaitForChild("HumanoidRootPart", 5)
if humanoidRootPart then
humanoidRootPart.CFrame = targetPosition
end
for _, obj in pairs(workspace:GetDescendants()) do
if obj:IsA("ProximityPrompt") and obj.Parent:IsA("BasePart") then
local distance = (obj.Parent.Position - targetPosition.Position).Magnitude
if distance < 15 then
fireproximityprompt(obj)
wait(0.2)
fireproximityprompt(obj)
end
end
end
local resetEvent = ReplicatedStorage:FindFirstChild("ResetStuds")
if resetEvent then
resetEvent:FireServer()
end
wait(0.2)
end
ADVERTISEMENTREMOVE ADS

Comments

0 comments
to add a comment
Loading comments
ADVERTISEMENTREMOVE ADS