The text below is selected, press Ctrl+C to copy to your clipboard. (⌘+C on Mac) No line numbers will be copied.
Guest
Wisteria script pastebin roblox
By LINK GAME on 2024-09-20 08:00 am | Syntax: LUA | Views: 10



New Script | Raw | Show/Hide line no. | Copy text to clipboard
  1. game:GetService("UserInputService").InputBegan:connect(function(inputObject, gameProcessedEvent)
  2.    if inputObject.KeyCode == Enum.KeyCode.W or Enum.KeyCode.A or Enum.KeyCode.S or Enum.KeyCode.D  then --Also, could be written as [[inputObject.KeyCode == "R"]]
  3.        game:GetService("Workspace").Living[game.Players.LocalPlayer.Name].Status.Running.Value = true
  4.    end
  5. end)