Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --By Rufus14
- for i,v in pairs(game.ReplicatedStorage:GetChildren()) do
- if v.Name == "CopBegin" or v.Name == "CopWalk" or v.Name == "CopBust" or v.Name == "CopTaunt" then
- v:destroy()
- end
- end
- local RunTheServersided = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextLabel = Instance.new("TextLabel")
- --Properties:
- RunTheServersided.Name = "RunTheServersided"
- RunTheServersided.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = RunTheServersided
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.BackgroundTransparency = 0.64999997615814
- Frame.Size = UDim2.new(1, 0, 1, 0)
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel.BackgroundTransparency = 1
- TextLabel.Position = UDim2.new(0.427, 0, 0.427, 0)
- TextLabel.Size = UDim2.new(0, 464, 0, 117)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Run the serversided script now."
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 39
- mouse = game.Players.LocalPlayer:GetMouse()
- local walkevent = game.ReplicatedStorage:WaitForChild("CopWalk")
- local startevent = game.ReplicatedStorage:WaitForChild("CopBegin")
- local bustevent = game.ReplicatedStorage:WaitForChild("CopBust")
- startevent:FireServer()
- local content = game.Players.LocalPlayer.Character.Head:WaitForChild("iDubbbzTV Content Cop Theme song")
- RunTheServersided:destroy()
- local humanoid = game.Players.LocalPlayer.Character.Humanoid
- function walk(speed)
- if speed > 5 then
- walkevent:FireServer(true)
- else
- walkevent:FireServer(false)
- end
- end
- humanoid.Running:connect(walk)
- function die()
- workspace.CurrentCamera.FieldOfView = 70
- script:Remove()
- end
- humanoid.Died:connect(die)
- function busted()
- local humanoid = mouse.Target.Parent:findFirstChildOfClass("Humanoid")
- if humanoid then
- print("Busting "..humanoid.Parent.Name)
- bustevent:FireServer(humanoid.Parent)
- end
- end
- mouse.Button1Down:connect(busted)
- while content.PlaybackLoudness < 600 do
- game:GetService("RunService").RenderStepped:wait()
- end
- workspace.CurrentCamera.FieldOfView = 110
- for i = 1,20 do
- wait()
- workspace.CurrentCamera.FieldOfView = workspace.CurrentCamera.FieldOfView - 2
- end
- while game:GetService("RunService").RenderStepped:wait() do
- workspace.CurrentCamera.FieldOfView = 70 + content.PlaybackLoudness / 200
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement