Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --mixing fly & super punch to admin prison life!
- --admin:
- loadstring(game:HttpGet(('https://raw.githubusercontent.com/XTheMasterX/Scripts/Main/PrisonLife'),true))()
- --Fly Gui:
- local fly = Instance.new("ScreenGui")
- local epic = Instance.new("Frame")
- local backgroundtitle = Instance.new("TextLabel")
- local creator = Instance.new("TextLabel")
- local title = Instance.new("TextLabel")
- local close = Instance.new("TextButton")
- local flybutton = Instance.new("TextButton")
- --Properties:
- fly.Name = "fly"
- fly.Parent = game.CoreGui
- fly.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
- epic.Name = "epic"
- epic.Parent = fly
- epic.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
- epic.Position = UDim2.new(0.0911376476, 0, 0.466830462, 0)
- epic.Size = UDim2.new(0, 181, 0, 178)
- epic.Active = true
- epic.Draggable = true
- backgroundtitle.Name = "backgroundtitle"
- backgroundtitle.Parent = epic
- backgroundtitle.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- backgroundtitle.Size = UDim2.new(0, 182, 0, 43)
- backgroundtitle.Font = Enum.Font.SciFi
- backgroundtitle.Text = ""
- backgroundtitle.TextColor3 = Color3.fromRGB(0, 0, 0)
- backgroundtitle.TextScaled = true
- backgroundtitle.TextSize = 14.000
- backgroundtitle.TextWrapped = true
- creator.Name = "creator"
- creator.Parent = epic
- creator.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
- creator.Position = UDim2.new(0.00442049652, 0, 0.762519121, 0)
- creator.Size = UDim2.new(0, 181, 0, 42)
- creator.Font = Enum.Font.SourceSans
- creator.Text = "Made by Arowix"
- creator.TextColor3 = Color3.fromRGB(0, 0, 0)
- creator.TextScaled = true
- creator.TextSize = 14.000
- creator.TextWrapped = true
- title.Name = "title"
- title.Parent = epic
- title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- title.BackgroundTransparency = 1.000
- title.Position = UDim2.new(0.0497237556, 0, 0, 0)
- title.Size = UDim2.new(0, 119, 0, 43)
- title.Font = Enum.Font.SciFi
- title.Text = "Fly"
- title.TextColor3 = Color3.fromRGB(0, 0, 0)
- title.TextScaled = true
- title.TextSize = 14.000
- title.TextWrapped = true
- close.Name = "close"
- close.Parent = epic
- close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
- close.Position = UDim2.new(0.76795578, 0, 0, 0)
- close.Size = UDim2.new(0, 43, 0, 43)
- close.Font = Enum.Font.GothamBlack
- close.Text = "X"
- close.TextColor3 = Color3.fromRGB(0, 0, 0)
- close.TextScaled = true
- close.TextSize = 14.000
- close.TextWrapped = true
- close.MouseButton1Down:connect(function()
- epic.Visible = false
- end)
- flybutton.Name = "flybutton"
- flybutton.Parent = epic
- flybutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
- flybutton.Position = UDim2.new(0.243093923, 0, 0.344781578, 0)
- flybutton.Size = UDim2.new(0, 84, 0, 42)
- flybutton.Font = Enum.Font.SourceSans
- flybutton.Text = "Click me to Fly"
- flybutton.TextColor3 = Color3.fromRGB(0, 0, 0)
- flybutton.TextSize = 14.000
- flybutton.MouseButton1Down:connect(function()
- loadstring(game:HttpGet("https://pastebin.com/raw/7rXZ9VNc", true))()
- flybutton.Text = "Press E to fly and unfly"
- flybutton.TextSize = 10.000
- end)
- --Super Punch Script
- mainRemotes = game.ReplicatedStorage
- meleeRemote = mainRemotes['meleeEvent']
- mouse = game.Players.LocalPlayer:GetMouse()
- punching = false
- cooldown = false
- function punch()
- cooldown = true
- local part = Instance.new("Part", game.Players.LocalPlayer.Character)
- part.Transparency = 1
- part.Size = Vector3.new(5, 2, 3)
- part.CanCollide = false
- local w1 = Instance.new("Weld", part)
- w1.Part0 = game.Players.LocalPlayer.Character.Torso
- w1.Part1 = part
- w1.C1 = CFrame.new(0,0,2)
- part.Touched:connect(function(hit)
- if game.Players:FindFirstChild(hit.Parent.Name) then
- local plr = game.Players:FindFirstChild(hit.Parent.Name)
- if plr.Name ~= game.Players.LocalPlayer.Name then
- part:Destroy()
- for i = 1,100 do
- meleeRemote:FireServer(plr)
- end
- end
- end
- end)
- wait(1)
- cooldown = false
- part:Destroy()
- end
- mouse.KeyDown:connect(function(key)
- if cooldown == false then
- if key:lower() == "f" then
- punch()
- end
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement