ok so i have a localscript that is inside a part that is inside of workspace but the script is not running at all and yes, it its not disabled, nothing prints and the decal does not change
localscript:
01 | local bouncede = false |
02 | print ( "waiting" ) |
03 | script.Parent.Touched:Connect( function () |
04 | if bouncede = = false then |
05 | print ( "running" ) |
06 | bouncede = true |
07 | wait( 51.66 ) |
08 | game.Workspace.VipArt.Decal.Texture = "rbxassetid://2535919362" |
09 | print ( "set" ) |
10 | wait( 13 ) |
11 | game.Workspace.VipArt.Decal.Texture = "rbxassetid://104774613" |
12 | wait( 49 ) |
13 | bouncede = false |
14 | end |
15 | end ) |
Local scripts can only run in PlayerGui, Backpack, Character, PlayerScripts, and ReplicatedFirst. You should move the local script into a place where it can run, or make the script a server script.