would you please help with the code. I'm illiterate when it comes to coding
undefined
Eleven111
@Eleven111
Posts
-
Having trouble making a script that gives the player Unlimited sprint on player spawn. -
Having trouble making a script that gives the player Unlimited sprint on player spawn.Resxt I understand but you helped him with the code and he said it worked for him that's why I was asking him about it, because I tried using the code and I added that correct code that u mentioned and still did not work. any help would be appreciated
-
Having trouble making a script that gives the player Unlimited sprint on player spawn.Unfunny_Umi hey I've tried using your script but it did not work here is the script can you tell if it's correct I
have no experience with codinginit()
{
thread unlimited_sprint();
for (;;)
{
level waittill("connecting", player);
player thread welcome();
player thread unlimited_sprint();
}
}unlimited_sprint()
{
self waittill("spawned_player");
self setperk("specialty_unlimitedsprint");
}
welcome(){
self endon("disconnect");
self waittill("spawned_player");}