Advertisement
NoobyDudeS

Mix Fly, Super Punch & Admin (prison life)

Oct 18th, 2021
438
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.95 KB | None | 0 0
  1. --mixing fly & super punch to admin prison life!
  2.  
  3. --admin:
  4.  
  5. loadstring(game:HttpGet(('https://raw.githubusercontent.com/XTheMasterX/Scripts/Main/PrisonLife'),true))()
  6.  
  7. --Fly Gui:
  8.  
  9. local fly = Instance.new("ScreenGui")
  10. local epic = Instance.new("Frame")
  11. local backgroundtitle = Instance.new("TextLabel")
  12. local creator = Instance.new("TextLabel")
  13. local title = Instance.new("TextLabel")
  14. local close = Instance.new("TextButton")
  15. local flybutton = Instance.new("TextButton")
  16.  
  17. --Properties:
  18.  
  19. fly.Name = "fly"
  20. fly.Parent = game.CoreGui
  21. fly.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  22.  
  23. epic.Name = "epic"
  24. epic.Parent = fly
  25. epic.BackgroundColor3 = Color3.fromRGB(0, 0, 0)
  26. epic.Position = UDim2.new(0.0911376476, 0, 0.466830462, 0)
  27. epic.Size = UDim2.new(0, 181, 0, 178)
  28. epic.Active = true
  29. epic.Draggable = true
  30.  
  31. backgroundtitle.Name = "backgroundtitle"
  32. backgroundtitle.Parent = epic
  33. backgroundtitle.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  34. backgroundtitle.Size = UDim2.new(0, 182, 0, 43)
  35. backgroundtitle.Font = Enum.Font.SciFi
  36. backgroundtitle.Text = ""
  37. backgroundtitle.TextColor3 = Color3.fromRGB(0, 0, 0)
  38. backgroundtitle.TextScaled = true
  39. backgroundtitle.TextSize = 14.000
  40. backgroundtitle.TextWrapped = true
  41.  
  42. creator.Name = "creator"
  43. creator.Parent = epic
  44. creator.BackgroundColor3 = Color3.fromRGB(170, 0, 255)
  45. creator.Position = UDim2.new(0.00442049652, 0, 0.762519121, 0)
  46. creator.Size = UDim2.new(0, 181, 0, 42)
  47. creator.Font = Enum.Font.SourceSans
  48. creator.Text = "Made by Arowix"
  49. creator.TextColor3 = Color3.fromRGB(0, 0, 0)
  50. creator.TextScaled = true
  51. creator.TextSize = 14.000
  52. creator.TextWrapped = true
  53.  
  54. title.Name = "title"
  55. title.Parent = epic
  56. title.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  57. title.BackgroundTransparency = 1.000
  58. title.Position = UDim2.new(0.0497237556, 0, 0, 0)
  59. title.Size = UDim2.new(0, 119, 0, 43)
  60. title.Font = Enum.Font.SciFi
  61. title.Text = "Fly"
  62. title.TextColor3 = Color3.fromRGB(0, 0, 0)
  63. title.TextScaled = true
  64. title.TextSize = 14.000
  65. title.TextWrapped = true
  66.  
  67. close.Name = "close"
  68. close.Parent = epic
  69. close.BackgroundColor3 = Color3.fromRGB(255, 0, 0)
  70. close.Position = UDim2.new(0.76795578, 0, 0, 0)
  71. close.Size = UDim2.new(0, 43, 0, 43)
  72. close.Font = Enum.Font.GothamBlack
  73. close.Text = "X"
  74. close.TextColor3 = Color3.fromRGB(0, 0, 0)
  75. close.TextScaled = true
  76. close.TextSize = 14.000
  77. close.TextWrapped = true
  78. close.MouseButton1Down:connect(function()
  79. epic.Visible = false
  80. end)
  81.  
  82. flybutton.Name = "flybutton"
  83. flybutton.Parent = epic
  84. flybutton.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
  85. flybutton.Position = UDim2.new(0.243093923, 0, 0.344781578, 0)
  86. flybutton.Size = UDim2.new(0, 84, 0, 42)
  87. flybutton.Font = Enum.Font.SourceSans
  88. flybutton.Text = "Click me to Fly"
  89. flybutton.TextColor3 = Color3.fromRGB(0, 0, 0)
  90. flybutton.TextSize = 14.000
  91. flybutton.MouseButton1Down:connect(function()
  92. loadstring(game:HttpGet("https://pastebin.com/raw/7rXZ9VNc", true))()
  93. flybutton.Text = "Press E to fly and unfly"
  94. flybutton.TextSize = 10.000
  95. end)
  96.  
  97. --Super Punch Script
  98.  
  99. mainRemotes = game.ReplicatedStorage
  100. meleeRemote = mainRemotes['meleeEvent']
  101. mouse = game.Players.LocalPlayer:GetMouse()
  102. punching = false
  103. cooldown = false
  104.  
  105. function punch()
  106. cooldown = true
  107. local part = Instance.new("Part", game.Players.LocalPlayer.Character)
  108. part.Transparency = 1
  109. part.Size = Vector3.new(5, 2, 3)
  110. part.CanCollide = false
  111. local w1 = Instance.new("Weld", part)
  112. w1.Part0 = game.Players.LocalPlayer.Character.Torso
  113. w1.Part1 = part
  114. w1.C1 = CFrame.new(0,0,2)
  115. part.Touched:connect(function(hit)
  116. if game.Players:FindFirstChild(hit.Parent.Name) then
  117. local plr = game.Players:FindFirstChild(hit.Parent.Name)
  118. if plr.Name ~= game.Players.LocalPlayer.Name then
  119. part:Destroy()
  120.  
  121. for i = 1,100 do
  122. meleeRemote:FireServer(plr)
  123. end
  124. end
  125. end
  126. end)
  127.  
  128. wait(1)
  129. cooldown = false
  130. part:Destroy()
  131. end
  132.  
  133.  
  134. mouse.KeyDown:connect(function(key)
  135. if cooldown == false then
  136. if key:lower() == "f" then
  137.  
  138. punch()
  139.  
  140. end
  141. end
  142. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement