I am trying to access the character model in game.Workspace, but I am not able to accomplish this. How may I do this task?
First you need to get the player
local player = game.Players.LocalPlayer
and then you get the character
local character = player.Character or player.CharacterAdded:Wait()
You need to use CharacterAdded:Wait() to make the script wait until the character is loaded. If you don't do it then the character variable may be nil.