Its nearly impossible to do.
(I will explain for people who don't know about php or asp)
When asp passes variables to the next website there are two options, one is post, and the other is get. With the get method, the variables are passed directly into the address bar such as: ?PostID=8279084. This means that anyone can change the value to anything they want and view different material. The other method, post, passes the variables in a way you can't see them, so you can't make a link to these pages except when you have the variables on the previous page. The way roblox is set up, many variables are passed using post, yet many are passed using get, the way that the different servers work are either through post or use javascript, and either way they cannot make a link to that server. |