Stand Upright Rebooted Script | ROKA FARM

Created by Atomicals

Features:

while true do
  wait()
local rcount = 0
for i,v in pairs(game:GetService("Workspace").Items:GetChildren()) do
if v.Name == "Rokakaka" then
rcount = rcount + 1
end
end
print(rcount)

local counter = 0

while counter < rcount do

TS_CFrame = CFrame.new(game:GetService("Workspace").Items.Rokakaka.Handle.Position)

local ts = game:GetService('TweenService')
local plr = game.Players.LocalPlayer.Character
local part = plr.HumanoidRootPart
local ti = TweenInfo.new(5, Enum.EasingStyle.Linear)
local tp = {CFrame = TS_CFrame}
ts:Create(part, ti, tp):Play()
wait(7)
end
end