Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[
- CREATED BY IITOXICITY ON V3RMILLION
- ]]
- local UT948N = Instance.new("ScreenGui")
- local MainFrame = Instance.new("Frame")
- local TopBar = Instance.new("Frame")
- local BottomBar = Instance.new("Frame")
- local Gamepasses = Instance.new("TextButton")
- local Visibility = Instance.new("TextButton")
- local Tpall = Instance.new("TextButton")
- local Hats = Instance.new("TextButton")
- LP = game.Players.LocalPlayer
- UT948N.Name = "UT948N"
- UT948N.Parent = game.CoreGui
- MainFrame.Name = "MainFrame"
- MainFrame.Parent = UT948N
- MainFrame.BackgroundColor3 = Color3.new(0, 0, 0)
- MainFrame.BackgroundTransparency = 0.5
- MainFrame.Position = UDim2.new(0.425293475, 0, 0.253921539, 0)
- MainFrame.Size = UDim2.new(0, 280, 0, 417)
- TopBar.Name = "TopBar"
- TopBar.Parent = MainFrame
- TopBar.BackgroundColor3 = Color3.new(0, 0, 0)
- TopBar.Size = UDim2.new(0, 280, 0, 41)
- BottomBar.Name = "BottomBar"
- BottomBar.Parent = MainFrame
- BottomBar.BackgroundColor3 = Color3.new(0, 0, 0)
- BottomBar.Position = UDim2.new(0, 0, 0.901678681, 0)
- BottomBar.Size = UDim2.new(0, 280, 0, 41)
- Gamepasses.Name = "Gamepasses"
- Gamepasses.Parent = MainFrame
- Gamepasses.BackgroundColor3 = Color3.new(0, 0, 0)
- Gamepasses.Position = UDim2.new(0, 0, 0.141486809, 0)
- Gamepasses.Size = UDim2.new(0, 280, 0, 50)
- Gamepasses.Font = Enum.Font.SourceSans
- Gamepasses.Text = "All gamepasses"
- Gamepasses.TextColor3 = Color3.new(1, 1, 1)
- Gamepasses.TextScaled = true
- Gamepasses.TextSize = 14
- Gamepasses.TextWrapped = true
- Gamepasses.MouseButton1Click:Connect(function()
- for i,v in pairs(LP.Information.Gamepasses:GetChildren()) do
- if v then
- v.Value = true
- end
- end
- end)
- Visibility.Name = "Visibility"
- Visibility.Parent = MainFrame
- Visibility.BackgroundColor3 = Color3.new(0, 0, 0)
- Visibility.Position = UDim2.new(0, 0, 0.306954443, 0)
- Visibility.Size = UDim2.new(0, 280, 0, 50)
- Visibility.Font = Enum.Font.SourceSans
- Visibility.Text = "Make hiders visible"
- Visibility.TextColor3 = Color3.new(1, 1, 1)
- Visibility.TextScaled = true
- Visibility.TextSize = 14
- Visibility.TextWrapped = true
- Visibility.MouseButton1Click:Connect(function()
- for i,v in pairs(game.Players:GetPlayers()) do
- if v then
- v.Character["Left Leg"].Transparency = 0
- v.Character["Right Leg"].Transparency = 0
- v.Character["Right Arm"].Transparency = 0
- v.Character["Left Arm"].Transparency = 0
- v.Character["Head"].Transparency = 0
- v.Character["Torso"].Transparency = 0
- end
- end
- end)
- Tpall.Name = "Tpall"
- Tpall.Parent = MainFrame
- Tpall.BackgroundColor3 = Color3.new(0, 0, 0)
- Tpall.Position = UDim2.new(0, 0, 0.484412491, 0)
- Tpall.Size = UDim2.new(0, 280, 0, 50)
- Tpall.Font = Enum.Font.SourceSans
- Tpall.Text = "Tp all to yourself"
- Tpall.TextColor3 = Color3.new(1, 1, 1)
- Tpall.TextScaled = true
- Tpall.TextSize = 14
- Tpall.TextWrapped = true
- Tpall.MouseButton1Click:Connect(function()
- for i = 1,50 do
- for i,v in pairs(game.Players:GetChildren()) do
- if v then
- local Pos = LP.Character.HumanoidRootPart.Position
- local TPos = v.Character.HumanoidRootPart
- TPos.CFrame = CFrame.new(Pos)
- wait(0.1)
- end
- end
- end
- end)
- Hats.Name = "Hats"
- Hats.Parent = MainFrame
- Hats.BackgroundColor3 = Color3.new(0, 0, 0)
- Hats.Position = UDim2.new(0, 0, 0.681055188, 0)
- Hats.Size = UDim2.new(0, 280, 0, 50)
- Hats.Font = Enum.Font.SourceSans
- Hats.Text = "All Hats"
- Hats.TextColor3 = Color3.new(1, 1, 1)
- Hats.TextScaled = true
- Hats.TextSize = 14
- Hats.TextWrapped = true
- Hats.MouseButton1Click:Connect(function()
- for i,v in pairs(LP.Information.HatList:GetChildren()) do
- if v then
- v.Value = true
- end
- end
- end)
- MainFrame.Active = true
- MainFrame.Selectable = true
- MainFrame.Draggable = true
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement