Popular Posts

Tuesday, 12 May 2026

HOW TO MAKE YOUR OWN HAT THAT CAN BE THROWN (while the hat is still on the head)

how to make your own hat that can be thrown while the hat is still on the head


STEP 1: MAKE YOUR OWN HAT!

1: USE PARTS OR MESH TO MAKE IT
2: Select the main part of the hat that sits on the head and name it Handle (capital 'H' is crucial)
3: If your hat has multiple parts, weld them to the Handle using WeldConstraints
4: Ensure all parts of the hat are Unanchored so it doesn't float when thrown
5: Insert an Attachment inside the Handle and name it HatAttachment. This helps position the hat on the character's head

STEP 2: MAKE IT WEARABLE (WHICH IS OPTIONAL)
 
1: In the Workspace, insert an Accessory object and name it "CustomHat"
2: Drag your Handle part into the Accessory object
3: Drag the Accessory object into StarterPlayer -> StarterCharacterScripts
NOTE: If the hat doesn't fit right, you can adjust the position of the HatAttachment

STEP 3: SCRIPT THE THROWABLE HAT

1: Insert a Tool object into StarterPack. Name it "ThrowHat"
2: Place your hat's Handle (and all welded parts) inside the tool
3:  Add a Script inside the tool and paste the following:

LUA

-- Server Script inside the Tool
local tool = script.Parent
local throwSpeed = 60 -- Adjust speed
local debris = game:GetService("Debris")

tool.Activated:Connect(function()
local character = tool.Parent
local handle = tool:FindFirstChild("Handle")
if handle then
-- Clone the hat to throw
local thrownHat = handle:Clone()
thrownHat.CanCollide = true
thrownHat.Parent = workspace
-- Position at character head
thrownHat.CFrame = character.Head.CFrame * CFrame.new(0, 1, 0)
-- Throw it
local velocity = Instance.new("LinearVelocity")
velocity.Velocity = character.HumanoidRootPart.CFrame.LookVector * throwSpeed + Vector3.new(0, 10, 0)
velocity.MaxForce = Vector3.new(math.huge, math.huge, math.huge)
velocity.Attachment0 = Instance.new("Attachment", thrownHat)
velocity.Parent = thrownHat
-- Remove the hat after 5 seconds
debris:AddItem(thrownHat, 5)
-- Destroy the hat from the player's head (optional)
-- handle.Transparency = 1 
end
end)













Tuesday, 5 May 2026

HOW TO MAKE A CUSTOM FACE IN ROBLOX STUDIO NO CODES!

HOW TO MAKE  A CUSTOM FACE IN ROBLOX STUDIO NO CODES!

1ST GO IN ANY WEBSITE TO DRAW FROM WHWAT I USED, I USE PIXLR E
2ND DRAW YOUR FACE AND SAVE IT (IF YOU USE PIXLR E GO TO FILES)
3RD GO TO ROBLOX STUDIO AND ADD YOUR DUMMY/RIG
4TH IN ROBLOX STUDIO GOT TO WINDOW THEN ASSET MANAGER 
5TH UPLOAD THE FACE IN THE ASSET MANAGER (SAVE THE GAME/ROBLOX FIRST!) AND FIND YOUR FACE
6TH PLACE YOUR FACE IN THE DUMMY/RIG
7TH GO TO THE DUMMY/RIG AND GO TO HEAD IF YOU FIND THE FACE DELETE IT

DONE YOU HAVE MADE A CUSTOM FACE








Tuesday, 21 April 2026

H0W T0 MAKE CUTSCENE IN ROBLOX

HOW TO MAKE A CUTSCENE IN ROBLOX! 


Key Components
Camera Parts: Anchored, transparent (Transparency = 1), non-collidable (CanCollide = false) parts that act as checkpoints for camera angles.
TweenService: A Roblox service used to animate the camera's CFrame (position and rotation) smoothly from one part to another.
LocalScript: Client-side scripting is required to manipulate the player's camera.
Folder: 
Organize camera parts in the Workspace to keep track of them

step-by-step implementation!
1st set up camera parts: place parts (point1, point2, etc) in the workspace, anchoring them, making them transparent, and disabling collision position them to represent the desired camera path
2 create a localscript: use the following structure in your localscript!:
local TweenService = game:GetService("TweenService")
local camera = workspace.CurrentCamera
local cameraPart1 = workspace:WaitForChild("Point1")
local cameraPart2 = workspace:WaitForChild("Point2")
-- Function to play the cutscene
local function playCutscene()
    camera.CameraType = Enum.CameraType.Scriptable
    camera.CFrame = cameraPart1.CFrame

    local tweenInfo = TweenInfo.new(5, Enum.EasingStyle.Sine, Enum.EasingDirection.Out)
    local tween = TweenService:Create(camera, tweenInfo, {CFrame = cameraPart2.CFrame})
    tween:Play()
    tween.Completed:Wait() -- Wait for the tween to finish

    camera.CameraType = Enum.CameraType.Custom
end
playCutscene()



4. trigger the cutscene: you can call playcutscene() immediately on spawn or trigger it using a touched event on a part as detailed in this 
Developer Forum post.
Roblox Creator Hub documentation
thx 4 reading this follow 4 morez





Tuesday, 14 April 2026

FUN GAMES YOU DIDNT KNOW ON ROBLOX!!

fun games to find on roblox?
top 10 games you could playyy

1st : A Nostalgic game 
THIS GAME IS VERY FUN A LOT OF FLASHING THO BUT ITS FUN
2ND: GRACE
THIS GAME ARE SIMILAR TO DOORS AND PRESSURE BUT HARDER! THISS IS ABOUT 1 SINNER WITH 35 sins!!
3rd: timezone bombs
you can show your best in this game or troll people in here!
4th: block tales
An retro-style RPG adventure game that offers a different pace from typical Roblox simulators!
5th: high tides
A retro-style pirate combat game allowing for team-based ship battles
6th: Untitled Tag Game
A fast-paced movement/tag game
7th: No More Time
Fast-paced, challenging parkour game
8th: RAGEBAITING OBBY
VERY RAGEBAITING AND MEMORIZING GAME IF YOU DIE YOU GOTTA REMEMBER
9TH: BUCKSHOT
SIMILAR TO THE ACTUAL GAME
10TH: CATALOG AVATAR
NOT SURE IF ITS POPULAR NOW BUT VERY FUN TO DESIGN YOUR AVATAR!

THATZ ALL THANKS 4 READING! 







Tuesday, 7 April 2026

HOW TO MAKE A SWORD SWINGING

 how to make a sword swing

1st make your sword
2nd Open Animation Editor: Go to the Plugins tab and open the Animation Editor Create Rig: Select a dummy (R6 or R15) to animate Keyframes: Set up the animation by creating a starting position, a mid-swing point (around 0.06-0.09s), and an ending position Set Priority: Set the animation priority to Action (crucial so the swing overrides walking animations).

3. Scripting the Swing
  • Add Animation Object: Inside the Tool, create an Animation object, name it "SwingAnim," and paste your published animation ID into the AnimationId property.
  • Add Script: Add a Script inside the tool to handle the input and animation.
  • Sample Script:



    local tool = script.Parent
    local anim = tool:WaitForChild("SwingAnim")
    local loadedAnim
    
    tool.Activated:Connect(function()
        local character = tool.Parent
        local humanoid = character:FindFirstChild("Humanoid")
        if humanoid then
            loadedAnim = humanoid:LoadAnimation(anim)
            loadedAnim:Play()
        end
    end)




HOW TO LOCK A CAMERA ON ROBLOX STUDIO :0

how to lock a camera on roblox studio?

there are 2 different type of camera lock!
the first one is locking a camera which is simple

1st create a LocalScript inside STARTERPLAYERSCRIPTS 
2nd USE THIS CODE
 
local camera = workspace.CurrentCamera
camera.CameraType = Enum.CameraType.Scriptable
-- Set the position and focus of the camera
camera.CFrame = CFrame.new(Vector3.new(0, 10, 0), Vector3.new(0, 0, 0))

NOTED THIS LOCKS THE CAMERA TO FIXED A POSITITON IN THE WORKSPACE NOT ATTACHED TO THE PLAYER HEAD XP

the second one is

1st  in the Explorer create a localscript inside starterplayerscripts 
2nd copy the code and paste it 

local RunService = game:GetService("RunService")
local player = game.Players.LocalPlayer
local camera = workspace.CurrentCamera

-- Adjust offset for camera positioning
local offset = Vector3.new(0, 10, 20) 

RunService.RenderStepped:Connect(function()
    local character = player.Character
    if character and character:FindFirstChild("HumanoidRootPart") then
        camera.CameraType = Enum.CameraType.Scriptable
        -- Position camera relative to player, looking at player
        local targetPos = character.HumanoidRootPart.Position + offset
        camera.CFrame = CFrame.new(targetPos, character.HumanoidRootPart.Position)
    end
end)
 
if you want, adjust the offset values [X,Y,Z] to set your desired locked angle

THATS ALL COMMENT FOR MORE LMAOZ xd



Tuesday, 31 March 2026

HOW TO MAKE A WORKING ESCALATOR IN MINECRAFT ˙𐃷˙

    how to make a working escalator in minecraft ➤

1st create a stair case foundation with blocks of iron or concrete

2nd place sticky pistons under each step, oriented to push the steps forward and upward

3rd connect the pistons to a redstone clock (using repeaters) to ensure they fire in a sewuence, creating smooth movement

4th set the redstone repeaters to a 4-tick delay to ensure the mechanism operates correctly, usually requiring a "three-game-tick" pulse to prevent breaking blocks 

5th use a stone button or pressure plate to start mechanism

a l t e n a t i v e m e t h o d s ➤

place down powered rails and minecarts on stairs for a simple escalator!

THATS ALL THANKS FOR READING 





Tuesday, 10 March 2026

HOW TO MAKE AN ELEVATOR IN MINECRAFT? ⍥

1st MAKE A CROSS (LIKE A t) OnCE YOUR DONE WITH THAT YOU HAVE TOo break 3 block (the longest line xp) and break it yet agai n in the middle

2nd add a note block riggggghhtttt in the middle and 2 more redstones dust

3rd put a sticky pistole both side of the cross 

4th place the observer in the middle of the pistole make sure the red dot face up!⍢


 5th put a slime block above the observer and 2 more for the sticky pistole! (both should have 2 ⍢)

6th drop down to the hole and look at the slime block then place the sticky pistole while facing down to the middle of the slimeblock (add one more above it!)

7th cover the hole with any type of planks your like you also need to cover the front of the slimeblock with the same woodѶ

8th next to the planks you made add the worrd (any type) beside it! up to the height u want btw

9th connect both of the woods with the same planks or any type of planks you want

10th in the middle place a note block right against the wood you just place ت
(be sure its above the observer)

11th put the obsidean above the note block and place a button infront of the wood (and the note block)

12 right on the ground of the hole you covered and has redstone bellow it make sure to add a button

IT WILL WORK IF IT MESS UP YOU DID SMTH WRONG!

thats all thx 4 reading this my silliez devver ὣ


  










Tuesday, 3 March 2026

HOW TO MAKE A ROBLOX GAME?

how to make a roblox game?

basic thing:

animation
1st. add your npc model in the avatar!
2nd. add a script inside your npc model
3. use this following script 

local npc = script.Parent
local humanoid = npc:WaitForChild("Humanoid")
local destination = Vector3.new(0, 0, 50) -- Change to your target position

humanoid:MoveTo(destination)

(make sure you made the animation! >*)

kill brick
1st create a part for your workspace!
2nd  change the size or color or anything you want! 
3rd add a script in the part 
4th write the code and paste the following script

local part = script.Parent

local function onTouch(otherPart)
local character = otherPart.Parent
local humanoid = character:FindFirstChild("Humanoid")

if humanoid then
humanoid.Health = 0 -- Instantly kills the player
end
end

part.Touched:Connect(onTouch)

DAmage brick
its similar to the kill brick BUT the scrips are 

local damage = 25 -- Amount of damage to deal
local cooldown = 1 -- Time in seconds before damage can be dealt again
local isTouching = false

script.Parent.Touched:Connect(function(hit)
    local character = hit.Parent
    local humanoid = character:FindFirstChild("Humanoid")

    if humanoid and not isTouching then
        isTouching = true
        humanoid:TakeDamage(damage)
        task.wait(cooldown) -- Debounce to prevent instant death
        isTouching = false
    end
end)

WELP! THATS ALL FOR THE BASIC COMMENT THIS POST FOR MORE! ⌓ ⌓
                   
U






Tuesday, 24 February 2026

SILLY AND GOOD GAME/APPS TO USE!

DISCORD : nice social app but you need to be 13+
still nice you can find your fav servers or ytbers or va!
9/10

fnaf: a classic scary cool horror game! *_0
very cool if you wanna have a scare on halloween 
8/10

FNF: a nice silly timing game which is also rhythm game
10/10

MY SINGING MONSTER: a very awesome song game mix with us treating them/naming them its also cool to hear them sing
9.5/10

Poppy playtime: a scary horror game which has A̴̠̼͚̎̄́̎͠L̶̰͙͕̖̮̿͝O̵͎̞̯̲͇͖̦̺̓͗̾̄̌͂̇ͅT̶̮̆͌͒̓͊̀̓͐ of lore!
10/10

garden of banban: same as poppy playtime but not alot of lore ig still good!
9.4/10

THATS ALL

Tuesday, 3 February 2026

FUN GAMES TO PLAY!

Minecraft 
rate: 7/10 create anything! but you have to pay :<
recommend and not recommend

Crazygames
rate: 6/10 a lot of games! some are a ripoff though
recommend if u wanna play a lot of games!

Mario party
rate: 9/10 fun games to play and you can play as any fav character you want
recommend in Nintendo

Roblox 
rate: 5/10 not bad

gta6 
rate : 0/10
havent came yet

mario X rabbit invation 
rate: 10/10
very nice and good collab

THATS ALL HAVE FUN!






HOW TO MAKE YOUR OWN HAT THAT CAN BE THROWN (while the hat is still on the head)

how to make your own hat that can be thrown while the hat is still on the head STEP 1: MAKE YOUR OWN HAT! 1: USE PARTS OR MESH TO MAKE IT 2:...