[ad_1]
Created by Rob123
Features:
local currentDirt = nil
while true do
local player = game.Players.LocalPlayer
local character = player.Character
local humanoid = character:WaitForChild("HumanoidRootPart")
local head = character.Head
local dirts = workspace.Dirts:GetChildren()
for _, dirtModel in pairs(dirts) do
local dirt = dirtModel:FindFirstChild("Dirt")
if dirt and dirt == currentDirt then
while dirt.Parent ~= nil and dirt.Transparency ~= 1 do
humanoid.CFrame = CFrame.new(dirt.Position.X, dirt.Position.Y, dirt.Position.Z)
head.CFrame = CFrame.new(head.Position,dirt.Position)
wait(0.1)
end
currentDirt = nil
elseif dirt and currentDirt == nil then
currentDirt = dirt
end
end
wait(0.1)
end
ENJOY!
Warning: DO NOT DOWNLOAD anything from this page, you’re only here to copy the script!
[ad_2]