Advertisement
BolzanoBozen

PRESSURE SCRIPT VER. 1!

Aug 10th, 2024
1,636
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 8.05 KB | None | 0 0
  1. local noclip = false
  2. local sdad = game.Players.LocalPlayer
  3. local askdja = workspace.Characters:FindFirstChild(sdad.Name)
  4. local sp = 16
  5. local key = {}
  6. local monster = {}
  7. local trickster ={}
  8. local locker = {}
  9. local OrionLib = loadstring(game:HttpGet('https://raw.githubusercontent.com/shlexware/Orion/main/source'))()
  10. local Window = OrionLib:MakeWindow({
  11. Name = "Pressure Script",
  12. HidePremium = false,
  13. SaveConfig = true,
  14. ConfigFolder = "PressureScript"
  15. })
  16. local Tab = Window:MakeTab({
  17. Name = "Main",
  18. Icon = "rbxassetid://4483345998",
  19. PremiumOnly = false
  20. })
  21. local Lobby = Window:MakeTab({
  22. Name = "Lobby",
  23. Icon = "rbxassetid://4483345998",
  24. PremiumOnly = false
  25. })
  26. Lobby:AddButton({
  27. Name = "Join Random Game (could be yourself or another player)",
  28. Callback = function()
  29. game:GetService("TeleportService"):Teleport(12552538292, game.Players.LocalPlayer)
  30. end
  31. })
  32. Tab:AddSlider({
  33. Name = "Set Walkspeed",
  34. Min = 0,
  35. Max = 50,
  36. Default = 16,
  37. Color = Color3.fromRGB(255,255,255),
  38. Increment = 1,
  39. ValueName = "sp",
  40. Callback = function(Value)
  41. sp = Value
  42. end
  43. })
  44.  
  45. Tab:AddButton({
  46. Name = "Fullbright",
  47. Callback = function()
  48. local lighting = game.Lighting
  49. lighting.Brightness = 2
  50. lighting.ClockTime = 14
  51. lighting.FogEnd = 100000
  52. lighting.GlobalShadows = false
  53. lighting.OutdoorAmbient = Color3.fromRGB(128, 128, 128)
  54. end
  55. })
  56. Tab:AddButton({
  57. Name = "Give Permanent NormalKey (pick a normalkey first)",
  58. Callback = function()
  59. game.Players.LocalPlayer.PlayerFolder.Inventory.NormalKeyCard:Destroy()
  60. local d = Instance.new("NumberValue")
  61. d.Name = "NormalKeyCard"
  62. d.Parent = game.Players.LocalPlayer.PlayerFolder.Inventory
  63. end
  64. })
  65. Tab:AddButton({
  66. Name = "Give Permanent InnerKeyCard (pick a InnerKeyCard first)",
  67. Callback = function()
  68. game.Players.LocalPlayer.PlayerFolder.Inventory.InnerKeyCard:Destroy()
  69. local d = Instance.new("NumberValue")
  70. d.Name = "InnerKeyCard"
  71. d.Parent = game.Players.LocalPlayer.PlayerFolder.Inventory
  72. end
  73. })
  74. Tab:AddToggle({
  75. Name = "Noclip",
  76. Default = false,
  77. Callback = function(Value)
  78. noclip = Value
  79. end
  80. })
  81. Tab:AddToggle({
  82. Name = "Notify Monster",
  83. Default = true,
  84. Flag = "NotifyMonster",
  85. Save = true
  86. })
  87. Tab:AddToggle({
  88. Name = "No Eyefestation",
  89. Default = true,
  90. Flag = "noeyefestation",
  91. Save = true
  92. })
  93. Tab:AddToggle({
  94. Name = "No Steams",
  95. Default = true,
  96. Flag = "steaming",
  97. Save = true
  98. })
  99. Tab:AddToggle({
  100. Name = "Key ESP",
  101. Default = true,
  102. Flag = "keys",
  103. Save = true,
  104. Callback = function(Value)
  105. for _, cham in pairs(key) do
  106. cham.Enabled = Value
  107. end
  108. end
  109. })
  110. Tab:AddToggle({
  111. Name = "Monster ESP",
  112. Default = true,
  113. Flag = "monsters",
  114. Save = true,
  115. Callback = function(Value)
  116. for _, cham in pairs(monster) do
  117. cham.Enabled = Value
  118. end
  119. end
  120. })
  121. Tab:AddToggle({
  122. Name = "TricksterRoom ESP",
  123. Default = true,
  124. Flag = "TricksterRoomdanger",
  125. Save = true,
  126. Callback = function(Value)
  127. for _, cham in pairs(trickster) do
  128. cham.Enabled = Value
  129. end
  130. end
  131. })
  132. Tab:AddToggle({
  133. Name = "Monster Locker ESP",
  134. Default = true,
  135. Flag = "monsterlocker",
  136. Save = true,
  137. Callback = function(Value)
  138. for _, cham in pairs(locker) do
  139. cham.Enabled = Value
  140. end
  141. end
  142. })
  143. local credits = Window:MakeTab({
  144. Name = "Credits",
  145. Icon = "rbxassetid://4483345998",
  146. PremiumOnly = false
  147. })
  148. credits:AddParagraph("Credits to playvora", "https://scriptblox.com/script/Pressure-script-15848")
  149. credits:AddParagraph("https://www.roblox.com/users/2207117597/profile")
  150. local function applykey(inst)
  151. local text = Instance.new("BillboardGui")
  152. text.Name = "key"
  153. text.Adornee = inst
  154. text.Size = UDim2.new(0, 200, 0, 50)
  155. text.StudsOffset = Vector3.new(0, 2, 0)
  156. text.AlwaysOnTop = true
  157. text.Parent = game.CoreGui
  158. local label = Instance.new("TextLabel")
  159. label.Size = UDim2.new(1, 0, 1, 0)
  160. label.Text = inst.Name
  161. label.TextColor3 = Color3.new(1, 1, 1)
  162. label.BackgroundTransparency = 1
  163. label.TextStrokeTransparency = 0
  164. label.TextScaled = true
  165. label.Parent = text
  166. table.insert(key, text)
  167. end
  168. local function applymos(inst)
  169. local text = Instance.new("BillboardGui")
  170. text.Name = "mons"
  171. text.Adornee = inst
  172. text.Size = UDim2.new(0, 200, 0, 50)
  173. text.StudsOffset = Vector3.new(0, 2, 0)
  174. text.AlwaysOnTop = true
  175. text.Parent = game.CoreGui
  176. local label = Instance.new("TextLabel")
  177. label.Size = UDim2.new(1, 0, 1, 0)
  178. label.Text = inst.Name
  179. label.TextColor3 = Color3.new(1, 0, 0)
  180. label.BackgroundTransparency = 1
  181. label.TextStrokeTransparency = 0
  182. label.TextScaled = true
  183. label.Parent = text
  184. table.insert(monster, text)
  185. end
  186. local function applylocker(inst)
  187. local text = Instance.new("BillboardGui")
  188. text.Name = "locker"
  189. text.Adornee = inst
  190. text.Size = UDim2.new(0, 200, 0, 50)
  191. text.StudsOffset = Vector3.new(0, 2, 0)
  192. text.AlwaysOnTop = true
  193. text.Parent = game.CoreGui
  194. local label = Instance.new("TextLabel")
  195. label.Size = UDim2.new(1, 0, 1, 0)
  196. label.Text = "Monster Locker"
  197. label.TextColor3 = Color3.new(0.5, 0, 0.5)
  198. label.BackgroundTransparency = 1
  199. label.TextStrokeTransparency = 0
  200. label.TextScaled = true
  201. label.Parent = text
  202. table.insert(locker, text)
  203. end
  204. local function applytrickster(inst)
  205. local text = Instance.new("BillboardGui")
  206. text.Name = "locker"
  207. text.Adornee = inst
  208. text.Size = UDim2.new(0, 200, 0, 50)
  209. text.StudsOffset = Vector3.new(0, 2, 0)
  210. text.AlwaysOnTop = true
  211. text.Parent = game.CoreGui
  212. local label = Instance.new("TextLabel")
  213. label.Size = UDim2.new(1, 0, 1, 0)
  214. label.Text = "Do not enter"
  215. label.TextColor3 = Color3.new(1, 1, 1)
  216. label.BackgroundTransparency = 1
  217. label.TextStrokeTransparency = 0
  218. label.TextScaled = true
  219. label.Parent = text
  220. table.insert(trickster, text)
  221. end
  222. local keycor = coroutine.create(function()
  223. workspace.Rooms.DescendantAdded:Connect(function(inst)
  224. if inst:IsA("Model") and inst:GetAttribute("InteractionType") == "KeyCard" then
  225. applykey(inst)
  226. end
  227. if inst:IsA("Model") and inst:GetAttribute("InteractionType") == "InnerKeyCard" then
  228. applykey(inst)
  229. end
  230. end)
  231. end)
  232. coroutine.resume(keycor)
  233. for _, v in ipairs(workspace.Rooms:GetDescendants()) do
  234. if v:IsA("Model") and v:GetAttribute("InteractionType") == "KeyCard" then
  235. applykey(v)
  236. end
  237. if v:IsA("Model") and v:GetAttribute("InteractionType") == "InnerKeyCard" then
  238. applykey(v)
  239. end
  240. end
  241. workspace.ChildAdded:Connect(function(inst)
  242. local sikibid = {}
  243. for _, descendant in ipairs(game.ReplicatedStorage.DeathFolder:GetDescendants()) do
  244. table.insert(sikibid, descendant.Name)
  245. end
  246. if table.find(sikibid, inst.Name) then
  247. if OrionLib.Flags.NotifyMonster.Value then
  248. OrionLib:MakeNotification({
  249. Name = "A monster has spawned go hide in the closet",
  250. Content = "WARNING!!!!!!!!!!!!",
  251. Image = "rbxassetid://4483345998",
  252. Time = 10
  253. })
  254. end
  255. if OrionLib.Flags.monsters.Value then
  256. applymos(inst)
  257. end
  258. end
  259. end)
  260. workspace.DescendantAdded:Connect(function(inst)
  261. if inst.Name == "Eyefestation" and OrionLib.Flags.noeyefestation.Value then
  262. task.wait(0.1)
  263. inst:Destroy()
  264. end
  265. if inst.Name == "Steams" and OrionLib.Flags.steaming.Value then
  266. task.wait(0.1)
  267. inst:Destroy()
  268. end
  269. if inst.Name == "MonsterLocker" and OrionLib.Flags.monsterlocker.Value then
  270. task.wait(0.1)
  271. applylocker(inst)
  272. end
  273. if inst.Name == "TricksterRoom" and OrionLib.Flags.TricksterRoomdanger.Value then
  274. task.wait(0.1)
  275. applytrickster(inst)
  276. end
  277. end)
  278. for _, v in ipairs(workspace:GetDescendants()) do
  279. if v.Name == "MonsterLocker" and OrionLib.Flags.monsterlocker.Value then
  280. applylocker(v)
  281. end
  282. end
  283. game:GetService("RunService").Heartbeat:Connect(function()
  284. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = sp
  285. end)
  286. game:GetService("RunService").Stepped:Connect(function()
  287. if askdja then
  288. if noclip then
  289. for _, part in pairs(askdja:GetDescendants()) do
  290. if part:IsA("BasePart") then
  291. part.CanCollide = false
  292. end
  293. end
  294. else
  295. for _, part in pairs(askdja:GetDescendants()) do
  296. if part:IsA("BasePart") then
  297. part.CanCollide = true
  298. end
  299. end
  300. end
  301. end
  302. end)
  303.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement