of     1   

SparkleOff
#139667972Tuesday, July 08, 2014 7:08 PM GMT

This script is supposed to give a tool to the player in the value but it doesn't p = script.Parent.Parent.Player.Value script.Parent.MouseButton1Down:connect(function(c) for _, Object in pairs (game.Players.LocalPlayer.Character:GetChildren()) do if Object:IsA("Tool") then Object:Clone().Parent = game.Workspace[p] script.Parent.Parent.Visible = false script.Parent.Parent.Parent.Frame.Visible = true end end end)
SparkleOff
#139669920Tuesday, July 08, 2014 7:26 PM GMT

...
smiley599
#139670197Tuesday, July 08, 2014 7:29 PM GMT

what is p does it ever get changed
SparkleOff
#139670856Tuesday, July 08, 2014 7:35 PM GMT

Yes it does. I saw it in solo
domorox17
#139671274Tuesday, July 08, 2014 7:39 PM GMT

If p is the value object, you are cloning into an object, not a player.
smiley599
#139671737Tuesday, July 08, 2014 7:43 PM GMT

My guess is p is not a player name
SparkleOff
#139672214Tuesday, July 08, 2014 7:48 PM GMT

What P is a value with a player name in it.
SparkleOff
#139672327Tuesday, July 08, 2014 7:49 PM GMT

There is nothing wrong with P...
SparkleOff
#139672912Tuesday, July 08, 2014 7:55 PM GMT

help.
SparkleOff
#139673932Tuesday, July 08, 2014 8:05 PM GMT

new script: p = script.Parent.Parent.Player.Value player = script.Parent.Parent.Parent.Parent.Parent script.Parent.MouseButton1Down:connect(function(c)     x = player.Character:GetChildren()           for i,x in pairs do         if x.ClassName == "Tool" then             x:Clone().Parent = game.Workspace[p]             script.Parent.Parent.Visible = false             script.Parent.Parent.Parent.Frame.Visible = true         end     end end)
SparkleOff
#139674348Tuesday, July 08, 2014 8:09 PM GMT

....
SparkleOff
#139675122Tuesday, July 08, 2014 8:16 PM GMT

bmp
smiley599
#139679796Tuesday, July 08, 2014 8:56 PM GMT

p = script.Parent.Parent.Player.Value --I don't know what this is player = script.Parent.Parent.Parent.Parent.Parent script.Parent.MouseButton1Down:connect(function(c) v = player.Character:GetChildren() for i,x in pairs(v)do if x.ClassName == "Tool" then x:Clone().Parent = game.Workspace[p] script.Parent.Parent.Visible = false script.Parent.Parent.Parent.Frame.Visible = true end end end)

    of     1