I am currently having an issue that I cannot seem to resolve alone. I am fairly new to scripting and have been learning bits and pieces. I am trying to clone my tool from ReplicatedStorage into workspace that has a prompt inside of the tool for players to interact with individually. While the script does not present any errors in the output, the interaction does not work.
Here is the script inside of Starterpack as i believe local scripts do not work is workspace:
local note = game.ReplicatedStorage.ReadNote[“Note”]:Clone()
local prox = game.ReplicatedStorage.ReadNote[“Note”].Handle[“ProximityPrompt”]:Clone()
StarterPack, StarterGui, StarterPlayerScripts and StarterCharacterScript will transfer it’s containings to exact spot of the player, however, it will not let any scripts to run
to avoid this, place your script into containers, such as Workspace
thank you so much. I think I just misplaced certain script lines, so it was not identifying properly. I will try to study your code to see how i can improve and why mines was faulty. I appreciate your help.