Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- -- Objects
- local PrisonRoyale = Instance.new("ScreenGui")
- local GUI = Instance.new("Frame")
- local Bighead = Instance.new("TextButton")
- local Spawning = Instance.new("TextButton")
- local info = Instance.new("TextBox")
- local ClickE = Instance.new("TextButton")
- -- Properties
- PrisonRoyale.Name = "PrisonRoyale"
- PrisonRoyale.Parent = game.CoreGui
- GUI.Name = "GUI"
- GUI.Parent = PrisonRoyale
- GUI.Active = true
- GUI.BackgroundColor3 = Color3.new(1, 0, 1)
- GUI.Draggable = true
- GUI.Position = UDim2.new(0, 20, 0, 361)
- GUI.Selectable = true
- GUI.Size = UDim2.new(0, 155, 0, 72)
- Bighead.Name = "Bighead"
- Bighead.Parent = GUI
- Bighead.BackgroundColor3 = Color3.new(0, 0, 1)
- Bighead.Position = UDim2.new(0, 0, 0, 27)
- Bighead.Size = UDim2.new(0, 46, 0, 27)
- Bighead.Font = Enum.Font.SourceSans
- Bighead.FontSize = Enum.FontSize.Size14
- Bighead.Text = "Big Heads"
- Bighead.TextColor3 = Color3.new(1, 0, 1)
- Bighead.TextSize = 14
- Bighead.TextWrapped = true
- Spawning.Name = "Spawning"
- Spawning.Parent = GUI
- Spawning.BackgroundColor3 = Color3.new(0, 0, 1)
- Spawning.Position = UDim2.new(0, 55, 0, 28)
- Spawning.Size = UDim2.new(0, 46, 0, 26)
- Spawning.Font = Enum.Font.SourceSans
- Spawning.FontSize = Enum.FontSize.Size14
- Spawning.Text = "Item Spawn"
- Spawning.TextColor3 = Color3.new(1, 0, 1)
- Spawning.TextSize = 14
- Spawning.TextWrapped = true
- info.Name = "info"
- info.Parent = GUI
- info.BackgroundColor3 = Color3.new(0, 0, 1)
- info.Position = UDim2.new(0, 0, 0, -4)
- info.Size = UDim2.new(0, 155, 0, 21)
- info.Font = Enum.Font.SourceSans
- info.FontSize = Enum.FontSize.Size14
- info.Text = "Prison Royale GUI, kekguy"
- info.TextColor3 = Color3.new(1, 0, 1)
- info.TextSize = 14
- ClickE.Name = "ClickE"
- ClickE.Parent = GUI
- ClickE.BackgroundColor3 = Color3.new(0, 0, 1)
- ClickE.Position = UDim2.new(0, 109, 0, 28)
- ClickE.Size = UDim2.new(0, 46, 0, 26)
- ClickE.Font = Enum.Font.SourceSans
- ClickE.FontSize = Enum.FontSize.Size14
- ClickE.Text = "E - TP"
- ClickE.TextColor3 = Color3.new(1, 0, 1)
- ClickE.TextSize = 14
- ClickE.TextWrapped = true
- --THE SHIT
- Bighead.MouseButton1Down:connect(function()
- _G.HeadSize = 40
- _G.HeadOffset = 20
- _G.Enabled = true
- game:service'RunService'.Stepped:connect(function()
- if _G.Enabled then
- for i,v in pairs(game:service'Players':GetPlayers()) do
- if v.Name ~= game:service'Players'.LocalPlayer.Name then
- pcall(function()
- v.Character.Head.CanCollide = false
- v.Character.Head.Size = Vector3.new(_G.HeadSize,_G.HeadSize,_G.HeadSize)
- v.Character.Head.CFrame = v.Character.Torso.CFrame * CFrame.new(0,_G.HeadOffset,0)
- end)
- end
- end
- end
- end)
- end)
- Spawning.MouseButton1Down:connect(function()
- for i,v in pairs(game.workspace.Loot:GetChildren()) do
- for i,v in pairs(v:GetChildren()) do
- if string.match(v.Name, "Asset") then
- else
- if string.match(v.name, "Melee") then
- else
- v.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame+Vector3.new(math.random(-2,2),5,math.random(-2,2))
- end
- end
- end
- end
- end)
- ClickE.MouseButton1Down:connect(function()
- plr = game.Players.LocalPlayer
- hum = plr.Character.HumanoidRootPart
- mouse = plr:GetMouse()
- mouse.KeyDown:connect(function(key)
- if key == "e" then
- if mouse.Target then
- hum.CFrame = CFrame.new(mouse.Hit.x, mouse.Hit.y + 5, mouse.Hit.z)
- end
- end
- end)
- end)
Add Comment
Please, Sign In to add comment