Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Player = "SimplyGlow"
- local Title = "Lv.99 Boss"
- local findPlayer = game.Workspace:FindFirstChild(Player)
- local Camera = game.Workspace.CurrentCamera
- local Music = Instance.new("Sound", findPlayer.Head)
- local Gui = Instance.new("BillboardGui", findPlayer.Head)
- local Text = Instance.new("TextLabel", Gui)
- Text.Text = "Lv.1 Crook"
- Gui.Size = UDim2.new(6, 0,1.5, 0)
- Gui.StudsOffset = Vector3.new(0, 3, 0)
- Text.BackgroundColor3 = Color3.new(1,1,1)
- Text.BackgroundTransparency = 1
- Text.Size = UDim2.new(1,0,1,0)
- Text.Font = Enum.Font.SourceSansBold
- Text.TextColor3 = Color3.new(1,1,1)
- Text.TextScaled = true
- Text.TextWrapped = true
- Music.Name = "Music"
- Music.SoundId = "rbxassetid://2738012216"
- Music.Volume = 0.3
- Music.Looped = false
- Music:Play()
- wait(1.7)
- Text.Text = Title
- while true do
- wait()
- Camera.FieldOfView = 70 + Music.PlaybackLoudness * 0.01
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement