Advertisement
SpookyPastes

Untitled

Oct 23rd, 2022
240
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.09 KB | None | 0 0
  1. if game.PlaceId == 2788229376 then
  2.     local OrionLib = loadstring(game:HttpGet("https://raw.githubusercontent.com/shlexware/Orion/main/source"))()
  3.     local Window = OrionLib:MakeWindow({
  4.         Name = "SpookyHub (Dahood)",
  5.         HidePremium = false,
  6.         IntroText = "Welcome To SpookyHub",
  7.         IntroIcon = "rbxassetid://11196639706",
  8.         SaveConfig = true,
  9.         ConfigFolder = "Spooooookyyyyy",
  10.     })
  11.  
  12.     -- Values
  13.     _G.godmode = true
  14.  
  15.     -- Functions
  16.  
  17.     function Godmode()
  18.         local localPlayer = game:GetService("Players").LocalPlayer
  19.         local localCharacter = localPlayer.Character
  20.         localCharacter:FindFirstChildOfClass("Humanoid").Health = 0
  21.         local newCharacter = localPlayer.CharacterAdded:Wait()
  22.         local spoofFolder = Instance.new("Folder")
  23.         spoofFolder.Name = "FULLY_LOADED_CHAR"
  24.         spoofFolder.Parent = newCharacter
  25.         newCharacter:WaitForChild("RagdollConstraints"):Destroy()
  26.         local spoofValue = Instance.new("BoolValue", newCharacter)
  27.         spoofValue.Name = "RagdollConstraints"
  28.         local name = game.Players.LocalPlayer.Name
  29.         local lol = game.Workspace:WaitForChild(name)
  30.         local money = Instance.new("Folder", game.Players.LocalPlayer.Character)
  31.         money.Name = "FULLY_LOADED_CHAR"
  32.         lol.Parent = game.Workspace.Players
  33.         game.Players.LocalPlayer.Character:WaitForChild("BodyEffects")
  34.         game.Players.LocalPlayer.Character.BodyEffects.BreakingParts:Destroy()
  35.     end
  36.  
  37.     function ChatSpy()
  38.         loadstring(game:HttpGet(("https://raw.githubusercontent.com/SpookyIsntASkid/SpookyHub-Dahood-/main/Chat%20Spy"),true))()
  39.     end
  40.  
  41. -- Tabs
  42.  
  43.     local Home = Window:MakeTab({
  44.         Name = "Home",
  45.         Icon = "rbxassetid://11196639706",
  46.         PremiumOnly = false,
  47.     })
  48.  
  49.     local name = Home:AddLabel("Name: " .. game.Players.LocalPlayer.Name)
  50.  
  51.     local Main = Window:MakeTab({
  52.         Name = "Main",
  53.         Icon = "rbxassetid://11196639706",
  54.         PremiumOnly = false,
  55.     })
  56.  
  57.     -- Buttons
  58.     Main:AddButton({
  59.         Name = "Godmode",
  60.         Callback = function(Value)
  61.             _G.Godmode = Value
  62.             Godmode()
  63.         end,
  64.     })
  65.    
  66.         Main:AddButton({
  67.             Name = "Chat Spy",
  68.             Callback = function(Value)
  69.                 _G.ChatSpy = Value
  70.                 ChatSpy()
  71.             end,
  72.         }) 
  73.  
  74.     OrionLib:Init()
  75. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement