You used to need premium for DevEx, but now you don’t (it changed right after I bought premium to DevEx haha)
I see a few problems, in your local script you have the function for prompting a purchase, but you never fire it from anywhere. Since I’m guessing you want it to prompt when the ClickDetector is clicked, we’ll use that.
ClickDetector.MouseClick:Connect(function()
end
Another problem is your LocalScript is inside the part in workspace, but LocalScripts will not run in workspace. They need to be in StarterGui
or StarterPlayer.StarterPlayerScripts
. StarterPlayerScripts works best here, so lets do that.
Here’s the file again, when clicking on the part it will prompt the purchase.
Game_Pass_Test.rbxl (59.4 KB)
1 Like
POW… @KdudeDev thank you soooo much, you are a true Robloxian GOAT.
appreciate it your help sooo much and it works… you made my day!
1 Like