Any script you want?

[ARGH] SansTheMemeLord
Joined 26/10/2020
Posts 4,420
01:47 AM 23/06/2023
A script where if you hold the X button on your keyboard, the FOV of the camera will change to 20

And if you let go the X button the FOV turns normal


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
06:43 AM 23/06/2023
Quote from qwacoinlxo712 , 01:43 PM 06/05/2023
gun script pretty please
you can just use the lazy public one


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
06:45 AM 23/06/2023
Quote from DcBeav_NotHI , 10:57 PM 08/05/2023
can I get the script to make like an all time leaderboards for kills please
just player.setScore(score) for setting the score in the leaderboard
so just run player.setScore(player.score+1) every time a player gets a kill


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
06:46 AM 23/06/2023
Quote from 519825912541 , 09:33 AM 24/05/2023
crash script
scripting is in javascript so the answer is yes


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
06:54 AM 23/06/2023
Quote from SansTheMemeLord , 01:47 AM 23/06/2023
A script where if you hold the X button on your keyboard, the FOV of the camera will change to 20

And if you let go the X button the FOV turns normal
theres no holding buttons

Game.on("initialSpawn", plr => {
plr.origFOV = plr.cameraFOV
plr.keypress(key => {
switch (key) {
case "x":
if (plr.cameraFOV == 20) plr.setCameraFOV(plr.origFOV)
else plr.setCameraFOV(20)
break
}
})
})


[ARGH] SansTheMemeLord
Joined 26/10/2020
Posts 4,420
01:18 PM 23/06/2023
Quote from 1nator , 06:54 AM 23/06/2023
Quote from SansTheMemeLord , 01:47 AM 23/06/2023
A script where if you hold the X button on your keyboard, the FOV of the camera will change to 20

And if you let go the X button the FOV turns normal

theres no holding buttons

Game.on("initialSpawn", plr => {
plr.origFOV = plr.cameraFOV
plr.keypress(key => {
switch (key) {
case "x":
if (plr.cameraFOV == 20) plr.setCameraFOV(plr.origFOV)
else plr.setCameraFOV(20)
break
}
})
})
thanks!


homeroservio
Joined 23/08/2021
Posts 3
10:37 PM 28/06/2023
how do i make a script that when you join a text appears on your screen that says something? (and then dissapears after some seconds)


[Brick] 1nator
Joined 11/10/2017
Posts 11,114
10:29 PM 29/06/2023
Quote from homeroservio , 10:37 PM 28/06/2023
how do i make a script that when you join a text appears on your screen that says something? (and then dissapears after some seconds)
Game.on("playerJoin", (player) => {player.centerPrint("text", 6)})



shows "text" for 6 seconds


DanYT
Joined 21/07/2022
Posts 14
11:47 PM 30/06/2023
A script that plays music in the game.


OtterOnBrickHill
Joined 22/04/2023
Posts 10
05:22 AM 11/07/2023
by missile i mean projectile in general, preferably one that shoots from a tool

1 2 3 4 5