i was making a magic 8 ball but the it wasn't showing in game. Can someone help me? It works but it doesn't show in game.
Put this in a Local Script Inside StarterGUI. you will have to multiply the script if there is more then one part inside of the 8Ball. I highly recommend making a folder for it.
local player = game:GetService("Players").LocalPlayer local character = player.Character or player.CharacterAdded:Wait() --//Events\\-- game:GetService("RunService").RenderStepped:Connect(function() --//Visible for i, part in pairs(character:GetChildren()) do if string.match(part.Name, "NAMEOFPARTINSIDE8BALLGEAR") then part.LocalTransparencyModifier = 0 end end end)
Closed as Not Constructive by awfulszn, DeceptiveCaster, and zblox164
This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.
Why was this question closed?