Question about this Lua coding
Archiviert 6 months ago
B
Alcoholic Steve
Verified
local RunService = game:GetService("RunService")
RunService.RenderStepped:Connect(function()
local char = game.Players.LocalPlayer.Character
if char and char:FindFirstChild("HumanoidRootPart") then
local offset = Vector3.new(math.random(-5,5)/10, 0, math.random(-5,5)/10)
char:Move(offset, true)
end
end)
I asked chatgpt to upgrade my script and this is what I got back is this good I'm out of town for a while so i won't be able to use this until I get back but any feedback that I get will be used thanks
