Category:Player Tools

From Legacy Roblox Wiki
Revision as of 18:46, 20 April 2007 by 24.222.162.52 (talk)
Jump to navigationJump to search

print("Invisibility hopper script loaded")

enabled = true invisibilityTime = 8 -- Time the person will be invisible reloadTime = 4 -- Additional time to reload

function setCursor(mouse) if enabled then mouse.Icon = "rbxasset://textures\\ArrowCursor.png" else mouse.Icon = "rbxasset://textures\\ArrowFarCursor.png" end end

function onButton1Down(mouse) if enabled then enabled = false setCursor(mouse) -- Not ready anymore playerScript = script.Parent.Fade:clone() -- Copy the fading script playerScript.Parent = game.Players.LocalPlayer.Character -- Place it in the player scriptTimeOut = Instance.new("NumberValue") -- Give it a time before becoming visible again scriptTimeOut.Name = "InvisibilityTime" scriptTimeOut.Value = invisibilityTime scriptTimeOut.Parent = playerScript

wait(reloadTime + invisibilityTime) -- Wait for a proper reload time enabled = true -- Ready again end setCursor(mouse) -- Set apropriate cursor end

function onSelected(mouse) -- When the weapon is selected, make the script recognize clicks print("Invisibility selected") setCursor(mouse) -- Make the mouse indicate readiness mouse.Button1Down:connect(function() onButton1Down(mouse) end) end

Pages in category "Player Tools"

The following 4 pages are in this category, out of 4 total.