diff --git a/src/game/game.service.ts b/src/game/game.service.ts
index e4288a40a2237882742a0cb059984cd62a8b966b..887d06e8ce4a2b9350da958cbe9532f9631eaee2 100644
--- a/src/game/game.service.ts
+++ b/src/game/game.service.ts
@@ -12,6 +12,7 @@ import { GameDTO, FlagboxEventDTO, GameStateDTO } from './game.dto';
 import { PersonEntity } from '../user/user.entity';
 import { FactionEntity } from '../faction/faction.entity';
 import { NotificationGateway } from '../notifications/notifications.gateway';
+import { ScoreService } from 'src/score/score.service';
 
 @Injectable()
 export class GameService {
@@ -29,7 +30,11 @@ export class GameService {
       ObjectivePoint_HistoryEntity
     >,
     private notificationGateway: NotificationGateway,
-  ) {}
+    private scoreService: ScoreService,
+  ) {
+    //start timer when gameservice is loaded
+    this.scoreService.startTimer();
+  }
   // create a new game
   async createNewGame(personId: PersonEntity, gameData: GameDTO) {
     // checks if a game with the same name exists already
diff --git a/src/score/score.controller.ts b/src/score/score.controller.ts
index dd26dd24daaec51422557339c8d1a5939ca58ffc..a9989a06b77d8ec08b1c84db9dbf24ad87fe9377 100644
--- a/src/score/score.controller.ts
+++ b/src/score/score.controller.ts
@@ -29,13 +29,6 @@ export class ScoreController {
     return this.scoreService.addScore(data, gameId);
   }
 
-  // temporary scoreTick path, :id is gameId
-  @Get('tick-score/:id')
-  @GameStates('STARTED')
-  async scoreTick(@Param('id') gameId: GameEntity) {
-    return this.scoreService.scoreTick(gameId);
-  }
-
   // shows scores, :id is gameId
   @Get('get-score/:id')
   @UseInterceptors(ClassSerializerInterceptor)
diff --git a/src/score/score.service.ts b/src/score/score.service.ts
index 1a62576004559e371595916d01f94014c4aeeef9..957780c2c8699f4791e11d495e2f6ce5973667f7 100644
--- a/src/score/score.service.ts
+++ b/src/score/score.service.ts
@@ -30,10 +30,7 @@ export class ScoreService {
     @InjectRepository(FactionEntity)
     private factionRepository: Repository<FactionEntity>,
     private notificationGateway: NotificationGateway,
-  ) {
-    // initialize timer when service is loaded
-    this.startTimer();
-  }
+  ) {}
 
   async addScore(scoreData: ScoreDTO, gameId: GameEntity) {
     // check if faction exists