Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- AI Voice = https://murf.ai/ (web)
- Audio Editor = Audacity (app)
- Sound Composer and Scripter = TestAccount87000 (user)
- Devforum Helper = Volieb (user)
- --]]
- local Crop = {
- Protect = {
- A = Vector2.new(0,1.427);
- B = Vector2.new(1.580,3.415);
- C = Vector2.new(3.568,5.301);
- D = Vector2.new(5.556,7.289);
- E = Vector2.new(7.595,9.124);
- F = Vector2.new(9.481,11.163);
- ['Escore the tank!'] = Vector2.new(58.974,60.350)
- };
- Elimate = {
- Opponent = Vector2.new(11.418,13.253);
- Vehicle = Vector2.new(13.406,15.241)
- };
- Losing = {
- ['Keep it up Soldier!'] = Vector2.new(15.546,17.177);
- ['Dont Give Up!'] = Vector2.new(17.381,18.707);
- ['Stay Strong Soldier!'] = Vector2.new(18.961,20.593)
- };
- EndGame = {
- Win = Vector2.new(20.949,22.733);
- Lost = Vector2.new(23.090,25.282)
- };
- Shot = {
- ['Nice Shot!'] = Vector2.new(25.588,26.913);
- Headshot = Vector2.new(27.168,28.238)
- };
- Capture = {
- A = Vector2.new(28.646,30.022);
- B = Vector2.new(30.328,32.010);
- C = Vector2.new(32.304,34.151);
- E = Vector2.new(36.292,37.821);
- F = Vector2.new(38.229,39.656);
- };
- Secure = {
- A = Vector2.new(39.911,42.916);
- B = Vector2.new(43.224,45.823);
- C = Vector2.new(46.384,49.035);
- E = Vector2.new(49.292,52.297);
- F = Vector2.new(52.756,55.508);
- };
- }
- task.wait(2)
- for test1name, test1 in pairs(Crop) do
- for test2name, test2 in pairs(test1) do
- print('played '..test1name..':'..test2name)
- local selfSound = Instance.new('Sound',workspace)
- selfSound.SoundId = 'rbxassetid://8780076706'
- selfSound.TimePosition = test2.X
- selfSound.Looped = false
- selfSound:Play()
- selfSound.PlaybackSpeed = 0.85
- task.wait((test2.Y-test2.X)*1.15)-- 1.15 is for the speed
- selfSound:Stop()
- selfSound:Destroy()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment