Back to Scripts
weird strict dad

weird strict dad

ScriptBlox
Universal Free

Game: Script hub

53 Views
0 Likes
0 Dislikes
alexkkork123

alexkkork123

offline

Features

note: i dont know why but i couldnt enter weird strict dad game id ๐Ÿ  Daddy's Home - Universal Script PLAYER TAB (Both Modes) Infinite Stats (Energy, Hunger, Thirst, Oxygen) Infinite Stamina Infinite Flashlight Battery God Mode Walk Speed Slider Jump Power Slider VISUALS TAB (Both Modes) Fullbright No Fog Remove Blur Entity ESP (Dad & Monster) Player ESP TELEPORT TAB Main Game Locations: Front Door Bedroom Kitchen Garage Generator Living Room Bathroom Basement Attic Forest Mode Locations: ๐Ÿ  Shelter ๐ŸŒ Snailhouse ๐Ÿ›๏ธ Greekhouse โœˆ๏ธ Plane Crash ๐ŸŒŸ Good Ending Area ๐Ÿ•๏ธ Camp ๐Ÿ”ฅ Campfire Shelter Bedroom Snail Door Greek Door Universal (Both Modes): Teleport to Player (dropdown) Teleport to Dad Teleport to Monster/Xenobus ๐Ÿงช ALCHEMY TAB (Forest Only) Potion Recipes Display Open Alchemy Book Collect All Ingredients (ESP) Clear Ingredient ESP Fire Tutorial2 Remote Fire FadeEvent Remote Fire Controls Remote MISC TAB (Both Modes) Block Jumpscares Instant Interact (No Hold) Anti-Death Effects Reset Character Rejoin Server FUN TAB (Both Modes) Night Vision Trigger Sebee Easter Egg Trigger Green Remote Voice Emote Dropdown Trigger Camera Shake Third Person Camera EXPLOITS TAB (Both Modes) Spoof as Sebee Add Fake VIP Tag Spoof Money Display (999999) Unlock All Emotes (Visual) Fake Better Flashlight Gamepass SETTINGS TAB (Both Modes) Toggle UI Keybind Destroy Script Credits/Info

Script Code

--[[
    Daddy's Home Universal Script
    Supports: Main Game + The Forest Gamemode
    PlaceId: 14787381917 / 71718624482170
    Using Rayfield UI Library
]]

-- Load Rayfield
local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))()

-- Services
local Players = game:GetService("Players")
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local RunService = game:GetService("RunService")
local Lighting = game:GetService("Lighting")
local UserInputService = game:GetService("UserInputService")

local LocalPlayer = Players.LocalPlayer
local Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
local Humanoid = Character:WaitForChild("Humanoid")

-- Wait for game to load
repeat task.wait() until LocalPlayer:FindFirstChild("Energy")

-- Connections table
local Connections = {}

-- Detect gamemode
local IsForestMode = false
local GameModeName = "Main Game"

-- Check for Forest mode indicators
pcall(function()
    if workspace:FindFirstChild("Shelter") or workspace:FindFirstChild("Snailhouse") or workspace:FindFirstChild("Greekhouse") then
        IsForestMode = true
        GameModeName = "The Forest"
    end
    -- Also check for AlchemyBook remote (Forest exclusive)
    if ReplicatedStorage:FindFirstChild("Remotes") and ReplicatedStorage.Remotes:FindFirstChild("AlchemyBook") then
        IsForestMode = true
        GameModeName = "The Forest"
    end
end)

print("[Script] Detected gamemode: " .. GameModeName)

-- Refresh character reference
local function RefreshCharacter()
    Character = LocalPlayer.Character or LocalPlayer.CharacterAdded:Wait()
    Humanoid = Character:WaitForChild("Humanoid")
end

LocalPlayer.CharacterAdded:Connect(RefreshCharacter)

-- Get remotes
local Remotes = ReplicatedStorage:WaitForChild("Remotes")

-- ESP Folder
local ESPFolder = Instance.new("Folder")
ESPFolder.Name = "ESP"
pcall(function()
    ESPFolder.Parent = game:GetService("CoreGui")
end)

-- โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
-- CREATE RAYFIELD WINDOW
-- โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•

local WindowTitle = IsForestMode and "๐ŸŒฒ Daddy's Home: The Forest" or "๐Ÿ  Daddy's Home"
local Window = Rayfield:CreateWindow({
    Name = WindowTitle,
    LoadingTitle = "Daddy's Home Script",
    LoadingSubtitle = "Gamemode: " .. GameModeName,
    ConfigurationSaving = {
        Enabled = false,
        FolderName = nil,
        FileName = "DaddysHome"
    },
    Discord = {
        Enabled = false,
        Invite = "",
        RememberJoins = false
    },
    KeySystem = false
})

-- โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
-- PLAYER TAB
-- โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•

local PlayerTab = Window:CreateTab("Player", 4483362458)

local PlayerSection = PlayerTab:CreateSection("Stats")

PlayerTab:CreateToggle({
    Name = "Infinite Stats",
    CurrentValue = false,
    Flag = "InfiniteStats",
    Callback = function(Value)
        if Connections["InfiniteStats"] then
            Connections["InfiniteStats"]:Disconnect()
            Connections["InfiniteStats"] = nil
        end
        
        if Value then
            Connections["InfiniteStats"] = RunService.Heartbeat:Connect(function()
                pcall(function()
                    if LocalPlayer:FindFirstChild("Energy") then
                        LocalPlayer.Energy.Value = 100
                    end
                    if LocalPlayer:FindFirstChil

Ratings & Reviews

No reviews yet. Be the first to review this script!

Comments (0)

Please login to comment

Login with Discord

Loading comments...