Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local ScreenGui = Instance.new("ScreenGui")
- local Frame = Instance.new("Frame")
- local TextButton = Instance.new("TextButton")
- local Credits = Instance.new("TextLabel")
- local TextButton_2 = Instance.new("TextButton")
- --Properties:
- ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- Frame.Parent = ScreenGui
- Frame.BackgroundColor3 = Color3.new(0.54902, 0.54902, 0.54902)
- Frame.BackgroundTransparency = 0.10000000149012
- Frame.BorderColor3 = Color3.new(0.352941, 0.352941, 0.352941)
- Frame.BorderSizePixel = 5
- Frame.Position = UDim2.new(0.626002133, 0, 0.78906554, 0)
- Frame.Size = UDim2.new(0, 218, 0, 109)
- TextButton.Parent = Frame
- TextButton.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
- TextButton.BackgroundTransparency = 0.30000001192093
- TextButton.BorderColor3 = Color3.new(0.588235, 0.588235, 0.588235)
- TextButton.BorderSizePixel = 2
- TextButton.Position = UDim2.new(0.0464779884, 0, 0.101648398, 0)
- TextButton.Size = UDim2.new(0, 85, 0, 85)
- TextButton.Text = "TP to Pearl Chest"
- TextButton.TextColor3 = Color3.new(0, 0, 0)
- TextButton.TextScaled = true
- TextButton.TextSize = 10
- TextButton.TextStrokeColor3 = Color3.new(1, 1, 1)
- TextButton.TextStrokeTransparency = 0.80000001192093
- TextButton.TextWrapped = true
- Credits.Name = "Credits"
- Credits.Parent = Frame
- Credits.BackgroundColor3 = Color3.new(1, 1, 1)
- Credits.BackgroundTransparency = 1
- Credits.Position = UDim2.new(0.404276192, 0, -0.237800837, 0)
- Credits.Size = UDim2.new(0, 40, 0, 25)
- Credits.Font = Enum.Font.SourceSans
- Credits.Text = "GUI BY QAISG (I DID NOT MAKE SCRIPT)"
- Credits.TextColor3 = Color3.new(0, 0, 0)
- Credits.TextSize = 11
- TextButton_2.Parent = Frame
- TextButton_2.BackgroundColor3 = Color3.new(0.552941, 0.552941, 0.552941)
- TextButton_2.BackgroundTransparency = 0.30000001192093
- TextButton_2.BorderColor3 = Color3.new(0.588235, 0.588235, 0.588235)
- TextButton_2.BorderSizePixel = 2
- TextButton_2.Position = UDim2.new(0.569413781, 0, 0.101648398, 0)
- TextButton_2.Size = UDim2.new(0, 85, 0, 85)
- TextButton_2.Text = "All Enemies Torso"
- TextButton_2.TextColor3 = Color3.new(0, 0, 0)
- TextButton_2.TextScaled = true
- TextButton_2.TextSize = 10
- TextButton_2.TextStrokeColor3 = Color3.new(1, 1, 1)
- TextButton_2.TextStrokeTransparency = 0.80000001192093
- TextButton_2.TextWrapped = true
- -- Scripts:
- function SCRIPT_ORYY67_FAKESCRIPT() -- TextButton.Script
- getfenv().script = Instance.new('Script', TextButton)
- local Skya = script.Parent
- local me = game.Players.LocalPlayer.Character
- local Pearl = game.Workspace.PearlChests.Pearl.Union
- Skya.MouseButton1Click:Connect(function()
- me.HumanoidRootPart.CFrame = CFrame.new(Pearl.Position.X, Pearl.Position.Y, Pearl.Position.Z)
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_ORYY67_FAKESCRIPT))
- function SCRIPT_IVIG78_FAKESCRIPT() -- TextButton_2.Script
- getfenv().script = Instance.new('Script', TextButton_2)
- local Skya = script.Parent
- Skya.MouseButton1Click:Connect(function()
- if game.Players.LocalPlayer.Character:FindFirstChild("BanditShirt") then
- for i, v in pairs(game.Players:GetPlayers()) do
- if v ~= game.Players.LocalPlayer and (not v.Character:FindFirstChild("BanditShirt")) then
- v.Character.UpperTorso.Anchored = true
- v.Character.UpperTorso.Position = game.Players.LocalPlayer.Character.UpperTorso.Position + Vector3.new(math.random(-5,5),0,math.random(-5,5))
- end
- end
- elseif game.Players.LocalPlayer.Character:FindFirstChild("CowboyShirt") then
- for i, v in pairs(game.Players:GetPlayers()) do
- if v ~= game.Players.LocalPlayer and (not v.Character:FindFirstChild("CowboyShirt")) then
- v.Character.UpperTorso.Anchored = true
- v.Character.UpperTorso.Position = game.Players.LocalPlayer.Character.UpperTorso.Position + Vector3.new(math.random(-5,5),0,math.random(-5,5))
- end
- end
- end
- end)
- end
- coroutine.resume(coroutine.create(SCRIPT_IVIG78_FAKESCRIPT))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement