Hey guys,
I just wanted to share my new game with you all and get some feedback. In “Escape the Giant Hamster,” players must navigate through a series of mazes and avoid being caught by the giant hamster that is chasing them. The game is still in the early stages of development, but I think it has a lot of potential. Check it out and let me know what you think!
Code:
local player = game.Players.LocalPlayer
local character = player.Character
local hamster = game.Workspace:WaitForChild("Hamster")
while true do
if (character.Position - hamster.Position).Magnitude < 50 then
game.ReplicatedStorage.Lose:Fire()
end
wait(1)
end
I hope you enjoy the game!