s = script gui = s.Parent bg = gui.Bg base = bg.BarBase bar = base.Bar label = base.PercLabel cp = 0 added = 0.33 lp = game:GetService("Players").LocalPlayer function LoadGame() while cp < 100 do wait(0.01) cp = cp + added label.Text = cp.."%" local size = cp / 100 bar.Size = UDim2.new(size,0,1,0) end startGame() end function startGame() gui:remove() lp:LoadCharacter() end LoadGame()
On line 32 it should load the character, but it's not... why?
The :LoadCharacter() method can only be called by a serverscript, not a localscript