You can use the CharIndex function to find the "." in the string and then use the LEFT/RIGHT/SUBSTRING functions to separate the individual parts:
SET @FirstName = LEFT(FULLNAME, CharIndex('.', FULLNAME) - 1)
SET @LastName = RIGHT(FULLNAME, LEN(FULLNAME) - CHARINDEX('.', FULLNAME))