У вашего броузера проблема в совместимости с HTML5
A requested tutorial so I figured I'd get it done the same day.
ROBLOX Place
https://web.roblox.com/games/3357082366/Tutorial-Place
Arms
https://web.roblox.com/catalog/2583723077
Script-
local player = game.Players.LocalPlayer
local char = script.Parent
local cam = workspace.Camera
local run = game:GetService("RunService")
local arms = game.ReplicatedFirst.Arms:Clone()
run.RenderStepped:Connect(function()
arms:SetPrimaryPartCFrame(cam.CFrame * CFrame.new(0,-2,0))
end)
arms.Parent = cam