Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Gui to Lua
- -- Version: 3.2
- -- Instances:
- local TestExploits = Instance.new("ScreenGui")
- local Frame = Instance.new("ImageLabel")
- local TextLabel = Instance.new("TextLabel")
- local TextButton = Instance.new("TextButton")
- --Properties:
- TestExploits.Name = "TestExploits"
- TestExploits.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Name = "Frame"
- Frame.Parent = TestExploits
- Frame.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- Frame.BackgroundTransparency = 1.000
- Frame.Position = UDim2.new(0.487841934, 0, 0.447521865, 0)
- Frame.Size = UDim2.new(0, 302, 0, 228)
- Frame.Image = "rbxassetid://3570695787"
- Frame.ImageColor3 = Color3.fromRGB(29, 29, 29)
- Frame.ScaleType = Enum.ScaleType.Slice
- Frame.SliceCenter = Rect.new(100, 100, 100, 100)
- Frame.SliceScale = 0.120
- Frame.Active = true
- Frame.Draggable = true
- TextLabel.Parent = Frame
- TextLabel.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.BackgroundTransparency = 1.000
- TextLabel.Size = UDim2.new(0, 302, 0, 104)
- TextLabel.Font = Enum.Font.SourceSans
- TextLabel.Text = "Press this button then it will arrest all criminals"
- TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextLabel.TextScaled = true
- TextLabel.TextSize = 14.000
- TextLabel.TextWrapped = true
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.BackgroundTransparency = 1.000
- TextButton.Position = UDim2.new(0.0198675506, 0, 0.456140339, 0)
- TextButton.Size = UDim2.new(0, 290, 0, 50)
- TextButton.Font = Enum.Font.SourceSans
- TextButton.Text = "Arrest all crims"
- TextButton.TextColor3 = Color3.fromRGB(255, 255, 255)
- TextButton.TextScaled = true
- TextButton.TextSize = 14.000
- TextButton.TextWrapped = true
- -- Scripts:
- local function MVGHB_fake_script() -- TextButton.LocalScript
- local script = Instance.new('LocalScript', TextButton)
- local Player = game.Players.LocalPlayer
- local cpos = Player.Character.HumanoidRootPart.CFrame
- TextButton.MouseButton1Click:Connect(function()
- for i,v in pairs(game.Teams.Criminals:GetPlayers()) do
- if v.Name ~= Player.Name then
- local i = 10
- repeat
- wait()
- i = i-1
- game.Workspace.Remote.arrest:InvokeServer(v.Character.HumanoidRootPart)
- Player.Character.HumanoidRootPart.CFrame = v.Character.HumanoidRootPart.CFrame * CFrame.new(0, 0, 1)
- until i == 0
- end
- end
- Player.Character.HumanoidRootPart.CFrame = cpos
- Notify("Success", "Arrested all of the n00bs", "Cool!")
- end)
- end
- coroutine.wrap(MVGHB_fake_script)()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement