Solved Need help with a /fly command.

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the community!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

redstone_pro180

New Member
May 7, 2022
7
0
1
I have a server and i want to add a /fly command limited to players only with the permission: "fly"
(using powerranks plugin)
It all works except the fact that even someone without the permission can use it, help!
Code:
command /fly:
 executable by: players
 permission: fly
 Trigger:
  if {fly::%player%} is not set:
   send "<green>Flight mode enabled." to player
   set player's flight mode to true
   set {fly::%player%} to true
   stop
  send "&cFlight mode disabled." to player
  set player's flight mode to false
  delete {fly::%player%}
  stop
 
Last edited:
Status
Not open for further replies.