views
6.5k
likes
11

Comments (19)

What do you think?

Here is a good slender script:

var target : Transform; //the enemy's target
var moveSpeed = 3; //move speed
var stopSpeed = 0;
var rotationSpeed = 3; //speed of turning

var myTransform : Transform; //current transform data of this enemy

function Awake()
{
myTransform = transform; //cache transform data for easy access/preformance
}

function Start()
{
target = GameObject.FindWithTag("Player").transform; //target the player

}

function Update () {

		
			var Speed = moveSpeed;

if (renderer.isVisible)
{
myTransform.position += myTransform.forward * stopSpeed * Time.deltaTime;
}

if(!renderer.isVisible)
{
myTransform.position += myTransform.forward * moveSpeed * Time.deltaTime;
}
//rotate to look at the player
myTransform.rotation = Quaternion.Slerp(myTransform.rotation,
Quaternion.LookRotation(target.position - myTransform.position), rotationSpeed*Time.deltaTime);
		
	

}

10th Anniversary 2 version!

Can i know this game information

Frankly I was disappointed with this game. It had such great promise of being a really creepy game. Instead it ends up being just another stupid slender clone. It needs to have more work put into it the "slenderteddy" needs to be scary since it is not even scary and there needs to be a better way to get into the buildings as I got stuck trying to get in. Also when you start the game there is something weird going on in the right hand corner where there seems to be another completely black screen, it's really annoying and needs to be fixed. All in all if these things are fixed you probably have a great horror game.

Sadly, I only got one teddy bear then I turned my back and died. xD Good game though. A+

Free

SlenderTeddy V2

Version: 2.0.0over 10 years ago
Free

SlenderTeddy V2

Version: 2.0.0over 10 years ago

Hi all!

SlenderTeddy V2 is now released ready to play and download
tell your friends and be prepared for a good scare

Please inform me of any bugs or glitchs you find by commenting or messaging me personally

Let me know if you want me to implement anything into the game that i haven't listed below

Whats New?

Map

SlenderTeddy's AI

Future Improvements

*MiniMap

*MainMenu

*Fog

*Change of Static

*Multiple Maps

*Multiplayer (Hard to do)
#other



teen
Mild Cartoon Violence
Mild Fantasy Violence
Mild Realistic Violence
Animated Bloodshed

Back in Buisness

Game Failed