Advertisement
Sungmingamerpro13

Skip Cutscene (Script)

Jul 3rd, 2025
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.37 KB | None | 0 0
  1. local CutsceneEvent = game.ReplicatedStorage.CutsceneEvent
  2.  
  3. CutsceneEvent.SkipEvent.OnServerEvent:Connect(function(player)
  4.     if CutsceneEvent.SkipButtonValue.Value == true and CutsceneEvent.EndCutsceneValue.Value == false then
  5.         CutsceneEvent.SkipButtonValue.Value = false
  6.         CutsceneEvent.EndCutsceneValue.Value = true
  7.         print(player.Name.." Skip to Cutscene")
  8.     end
  9. end)
  10.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement