--BROUGHT TO YOU BY RobloxScripter.com!--
spawn(function()
local function Kaiju(player)
for i,v in pairs(game:GetService("Workspace").Characters:GetDescendants()) do
if v:IsA("BillboardGui") then
if tostring(v.PlayerToHideFrom) == player then
return v.Parent.Parent.Parent
end
end
end
end
while true do
Kaiju(game.Players.LocalPlayer.Name).Character.HumanoidRootPart.RotVelocity = Vector3.new(0,0,0)
wait()
Kaiju(game.Players.LocalPlayer.Name).Character.HumanoidRootPart.Velocity = Vector3.new(0,0,0)
wait()
end
end)