Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Script not running at all? (specific title)

Asked by
Donut792 216 Moderation Voter
6 years ago

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:

01local bouncede = false
02print("waiting")
03script.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
15end)

1 answer

Log in to vote
1
Answered by 6 years ago

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.

0
You'll also need to change script.Parent to wherever the part is User#24403 69 — 6y
Ad

Answer this question