of     2   
chevron_rightchevron_rightchevron_right

RealistK
#139524847Monday, July 07, 2014 12:52 PM GMT

I have never had this problem before but now suddenly all my weapons in my RPG game have it, when I pick a weapon, it works fine the first time but if you unequip it and then equip it again, it just disappears. If you reset then it just repeats as above. After being in the game for a while it works fine again. What can it be? the script?
DEVMAC101
#139525101Monday, July 07, 2014 12:58 PM GMT

If its the RPG in your games list it appears to work fine for me, correct me if i'm wrong.
RealistK
#139529316Monday, July 07, 2014 2:12 PM GMT

The Assassins Code [RPG] it is
RealistK
#139585947Monday, July 07, 2014 11:50 PM GMT

bump
RealistK
#139589997Tuesday, July 08, 2014 12:32 AM GMT

bump
RealistK
#139628465Tuesday, July 08, 2014 8:40 AM GMT

nump
RealistK
#139634456Tuesday, July 08, 2014 11:56 AM GMT

BUUUUUUMP
RealistK
#139641097Tuesday, July 08, 2014 2:15 PM GMT

ugh.. -.-
RealistK
#139749261Wednesday, July 09, 2014 11:13 AM GMT

bump
RealistK
#139751095Wednesday, July 09, 2014 11:58 AM GMT

bumpppp
RealistK
#139781817Wednesday, July 09, 2014 6:55 PM GMT

thanks ... -.-
RealistK
#139884191Thursday, July 10, 2014 4:51 PM GMT

bump
Edd_E
#139884785Thursday, July 10, 2014 4:58 PM GMT

Can you disable ALL scripts on weapon and then pick it up and see if it disappears?
RealistK
#139893958Thursday, July 10, 2014 6:24 PM GMT

I gtg now for some minutes so will try it out after, thanks already.
RealistK
#139921854Thursday, July 10, 2014 11:01 PM GMT

Yes, if I disable all scripts the weapon just picks up, then works and then it just disappears if you try to equip it again. Of course the weapon doesn't work without the scripts.
RealistK
#139922525Thursday, July 10, 2014 11:09 PM GMT

bump
RealistK
#140005624Friday, July 11, 2014 6:34 PM GMT

ROBLOX call this forum scripting (helpers)
smiley599
#140005987Friday, July 11, 2014 6:37 PM GMT

Well is there any output
Randy_Moss
#140006219Friday, July 11, 2014 6:40 PM GMT

When I played I found that to happen also, can you post the script here and also maybe switching the weapon might help. Or it just might be an error in script for 1 time use.
RealistK
#140006826Friday, July 11, 2014 6:46 PM GMT

Well in my RPG game, it doesn't work after once used. In a new place, it can be just re-equipped. Also when I pick a random weapon out of free models and I use it once, it also disappears. I think it is something in my game? I have never had problems with this untill some certain time it just broke after one use. The script called SwordScript: dmg = (2) -- How much it Damage? (Yes the sword when fighting. xD) hum = "Enemy" -- Whe don't really want to kill each others (player by player..) Put here your rpg monster humanoid name. r = game:service("RunService") ching = false sword = script.Parent.Handle Tool = script.Parent function blow(hit) if ching == true then return end local humanoid = hit.Parent:findFirstChild(hum) local vCharacter = Tool.Parent local vPlayer = game.Players:playerFromCharacter(vCharacter) if humanoid~=nil then tagHumanoid(humanoid, vPlayer) local damage = dmg humanoid:TakeDamage(damage) local part = Instance.new("Part") if (damage == 0) then part.BrickColor = BrickColor.new(23) else part.BrickColor = BrickColor.new(21) end part.formFactor = 1 part.Shape = "Ball" part.TopSurface = "0" part.BottomSurface = "0" part.Size = Vector3.new(1.375,1.375,1.375) part.Position = hit.Parent.Head.Position+Vector3.new(math.random(-3.6,3.6),3.5,math.random(-3.6,3.6)) --<<<--MAIN REASON it broke, forgot your ,0 in middle of vector part.Anchored = true local m = Instance.new("Model") part.Parent = m m.Parent = hit.Parent m.Name = ""..damage.." Damage" part.Name = "Head" local h = Instance.new("Humanoid") h.Parent = m local body = Instance.new("BodyPosition") body.position = Vector3.new(0,7.85,0) body.Parent = part part.CanCollide = false part.Reflectance = 0.11 part.Transparency = 0.25 h.MaxHealth = 0 h.Health = 0 ching = true wait(1) ching = false m:remove() wait(.1) untagHumanoid(humanoid) end end function tagHumanoid(humanoid, player) local creator_tag = Instance.new("ObjectValue") creator_tag.Value = player creator_tag.Name = "creator" creator_tag.Parent = humanoid end function untagHumanoid(humanoid) if humanoid ~= nil then local tag = humanoid:findFirstChild("creator") if tag ~= nil then tag.Parent = nil end end end function attack() atk = {"Slash"; "Lunge"; "Slash"} wew = atk[math.random(1, #atk)] if (wew == "Slash") then local anim = Instance.new("StringValue") anim.Name = "toolanim" anim.Value = "Slash" anim.Parent = Tool else local anim = Instance.new("StringValue") anim.Name = "toolanim" anim.Value = "Lunge" anim.Parent = Tool force = Instance.new("BodyVelocity") force.velocity = Vector3.new(0,10,0) force.Parent = Tool.Parent.Torso wait(.25) swordOut() wait(.25) force.Parent = nil wait(.5) swordUp() end end function swordUp() Tool.GripForward = Vector3.new(-1,0,0) Tool.GripRight = Vector3.new(0,1,0) Tool.GripUp = Vector3.new(0,0,1) end function swordOut() Tool.GripForward = Vector3.new(0,0,1) Tool.GripRight = Vector3.new(0,-1,0) Tool.GripUp = Vector3.new(-1,0,0) end function swordAcross() -- parry end Tool.Enabled = true function onActivated() if not Tool.Enabled then return end Tool.Enabled = false local character = Tool.Parent; local humanoid = character.Humanoid if humanoid == nil then print("Humanoid not found") return end attack() wait(1) Tool.Enabled = true end function onEquipped() end script.Parent.Activated:connect(onActivated) script.Parent.Equipped:connect(onEquipped) connection = sword.Touched:connect(blow) Local Gui script: local Tool = script.Parent; enabled = true function onButton1Down(mouse) if not enabled then return end enabled = false mouse.Icon = "rbxasset://textures\\GunWaitCursor.png" wait(.5) mouse.Icon = "rbxasset://textures\\GunCursor.png" enabled = true end function onEquippedLocal(mouse) if mouse == nil then print("Mouse not found") return end mouse.Icon = "rbxasset://textures\\GunCursor.png" mouse.Button1Down:connect(function() onButton1Down(mouse) end) end Tool.Equipped:connect(onEquippedLocal)
RealistK
#140023015Friday, July 11, 2014 9:31 PM GMT

bump
RealistK
#140082886Saturday, July 12, 2014 11:08 AM GMT

Guys c'mon I really need help with this
RealistK
#140082936Saturday, July 12, 2014 11:10 AM GMT

http://www.roblox.com/Zephys-Anti-Virus-Plugin-V0-94-item?id=151970737 I used this plugin and it said that it had removed some virusses like 200-250 or something so now it has 0 virusses. (Don't know if this plugin works or if there is a better virus remover) I do not know what is causing it, it's still in there while the plugin says there are 0 virusses. What could be causing this?
RealistK
#140083655Saturday, July 12, 2014 11:32 AM GMT

^^^^^^^^^^^^^^^^^^
RealistK
#140087203Saturday, July 12, 2014 1:23 PM GMT

I will not stop bumping

    of     2   
chevron_rightchevron_rightchevron_right