Someone how to make Change skybox on touch part? I need to make my game. And get back sky on stop touching.
first, you will need a touch script so the script can activate when you touch it
script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("HumanoidRootPart") then
you can use this to find if the item touching the part is a real thing
then you can create a new skybox using instance.new
script.Parent.Touched:Connect(function(hit) if hit.Parent:FindFirstChild("HumanoidRootPart") then local skybox = Instance.new("Sky") skybox.Parent = game.Lighting --add textures below end end)
you can add the skybox textures yourself next