Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Converted with ttyyuu12345's model to script plugin v4
- function sandbox(var,func)
- local env = getfenv(func)
- local newenv = setmetatable({},{
- __index = function(self,k)
- if k=="script" then
- return var
- else
- return env[k]
- end
- end,
- })
- setfenv(func,newenv)
- return func
- end
- cors = {}
- mas = Instance.new("Model",game:GetService("Lighting"))
- Tool0 = Instance.new("Tool")
- Script1 = Instance.new("Script")
- Script2 = Instance.new("Script")
- LocalScript3 = Instance.new("LocalScript")
- Part4 = Instance.new("Part")
- Part5 = Instance.new("Part")
- SpecialMesh6 = Instance.new("SpecialMesh")
- Weld7 = Instance.new("Weld")
- Part8 = Instance.new("Part")
- CylinderMesh9 = Instance.new("CylinderMesh")
- Weld10 = Instance.new("Weld")
- Part11 = Instance.new("Part")
- CylinderMesh12 = Instance.new("CylinderMesh")
- Weld13 = Instance.new("Weld")
- Part14 = Instance.new("Part")
- SpecialMesh15 = Instance.new("SpecialMesh")
- Weld16 = Instance.new("Weld")
- Part17 = Instance.new("Part")
- CylinderMesh18 = Instance.new("CylinderMesh")
- Weld19 = Instance.new("Weld")
- Part20 = Instance.new("Part")
- CylinderMesh21 = Instance.new("CylinderMesh")
- Weld22 = Instance.new("Weld")
- Part23 = Instance.new("Part")
- SpecialMesh24 = Instance.new("SpecialMesh")
- Weld25 = Instance.new("Weld")
- Part26 = Instance.new("Part")
- CylinderMesh27 = Instance.new("CylinderMesh")
- Decal28 = Instance.new("Decal")
- Weld29 = Instance.new("Weld")
- Part30 = Instance.new("Part")
- SpecialMesh31 = Instance.new("SpecialMesh")
- Weld32 = Instance.new("Weld")
- Part33 = Instance.new("Part")
- SpecialMesh34 = Instance.new("SpecialMesh")
- Part35 = Instance.new("Part")
- SpecialMesh36 = Instance.new("SpecialMesh")
- Fire37 = Instance.new("Fire")
- ScreenGui38 = Instance.new("ScreenGui")
- Frame39 = Instance.new("Frame")
- ImageButton40 = Instance.new("ImageButton")
- Configuration41 = Instance.new("Configuration")
- Script42 = Instance.new("Script")
- StringValue43 = Instance.new("StringValue")
- StringValue44 = Instance.new("StringValue")
- StringValue45 = Instance.new("StringValue")
- Part46 = Instance.new("Part")
- Script47 = Instance.new("Script")
- SpecialMesh48 = Instance.new("SpecialMesh")
- StringValue49 = Instance.new("StringValue")
- StringValue50 = Instance.new("StringValue")
- StringValue51 = Instance.new("StringValue")
- StringValue52 = Instance.new("StringValue")
- StringValue53 = Instance.new("StringValue")
- TextLabel54 = Instance.new("TextLabel")
- LocalScript55 = Instance.new("LocalScript")
- ImageButton56 = Instance.new("ImageButton")
- Configuration57 = Instance.new("Configuration")
- Script58 = Instance.new("Script")
- StringValue59 = Instance.new("StringValue")
- StringValue60 = Instance.new("StringValue")
- StringValue61 = Instance.new("StringValue")
- Hat62 = Instance.new("Hat")
- Part63 = Instance.new("Part")
- SpecialMesh64 = Instance.new("SpecialMesh")
- Hat65 = Instance.new("Hat")
- Part66 = Instance.new("Part")
- SpecialMesh67 = Instance.new("SpecialMesh")
- StringValue68 = Instance.new("StringValue")
- StringValue69 = Instance.new("StringValue")
- StringValue70 = Instance.new("StringValue")
- StringValue71 = Instance.new("StringValue")
- StringValue72 = Instance.new("StringValue")
- TextLabel73 = Instance.new("TextLabel")
- LocalScript74 = Instance.new("LocalScript")
- Tool0.Name = "Omnitrix"
- Tool0.Parent = mas
- Tool0.GripPos = Vector3.new(0.0599999987, -0.100000001, -0.100000001)
- Script1.Name = "RadarScript"
- Script1.Parent = Tool0
- table.insert(cors,sandbox(Script1,function()
- local Tool = script.Parent
- local gui = Tool.OmniGui
- local guiEnabled = false
- local guiOnPlayer = nil
- local range = 300
- local torso = nil
- local zIndex = 4
- local radarCenter = Vector2.new(140,155)
- enabled = true
- -- when activated, either bring gui up or down, depending on current state
- function onActivated()
- if not enabled then
- return
- end
- enabled = false
- local h = Tool.Parent:FindFirstChild("Humanoid")
- if (h ~= nil) then
- if guiEnabled == false then
- local p = game.Players:GetPlayerFromCharacter(Tool.Parent)
- if(guiOnPlayer == nil) then
- guiOnPlayer = gui:Clone()
- guiOnPlayer.Parent = p.PlayerGui
- end
- guiEnabled = true
- guiOnPlayer.Frame.Visible = true
- else
- guiOnPlayer.Frame.Visible = false
- guiEnabled = false
- end
- end
- enabled = true
- end
- -- remove gui when item is unequipped
- function onUnequipped()
- if guiEnabled == true then
- guiEnabled = false
- guiOnPlayer.Frame.Visible = false
- end
- torso = nil
- end
- function onEquipped()
- torso = Tool.Parent:FindFirstChild("Torso")
- end
- Tool.Equipped:connect(onEquipped)
- Tool.Unequipped:connect(onUnequipped)
- Tool.Activated:connect(onActivated)
- function removeGUIPlayers()
- local guiPlayers = guiOnPlayer.Frame.Players:GetChildren()
- for i = 1, #guiPlayers do
- guiPlayers[i]:remove()
- end
- end
- function incrementZIndex()
- zIndex = zIndex + 1
- if zIndex > 10000 then
- zIndex = 2
- end
- end
- function createPlayerGUINode(pos, playerText)
- local playerIcon = Instance.new("ImageLabel")
- playerIcon.Image = "http://www.roblox.com/asset/?id=28625552"
- playerIcon.BackgroundTransparency = 1
- playerIcon.BorderSizePixel = 0
- playerIcon.Size = UDim2.new(0,22.5,0,40.5)
- playerIcon.Position = UDim2.new(0,pos.x,0,pos.y)
- playerIcon.Parent = guiOnPlayer.Frame.Players
- playerIcon.ZIndex = zIndex
- incrementZIndex()
- local playerName = Instance.new("TextLabel")
- playerName.BackgroundTransparency = 1
- playerName.BorderSizePixel = 1
- playerName.Text = tostring(playerText)
- playerName.Size = UDim2.new(0,150,0,25)
- playerName.Parent = playerIcon
- playerName.Position = UDim2.new(0,-65,0,0)
- playerName.TextColor3 = Color3.new(1,0,0.4)
- playerName.ZIndex = zIndex
- incrementZIndex()
- end
- function updateGUI()
- removeGUIPlayers()
- local players = game.Players:GetChildren()
- for i = 1, #players do
- local playerTorso = players[i].Character:FindFirstChild("Torso")
- if playerTorso ~= nil then
- local posDiff = Vector3.new(torso.Position.x - playerTorso.Position.x,0,torso.Position.z - playerTorso.Position.z)
- if posDiff.magnitude < range and playerTorso.Parent.Name ~= torso.Parent.Name then
- -- translate coordinates to radar coordinates
- posDiff = Vector2.new((posDiff.x + range) * 0.5,(posDiff.z + range) * 0.5)
- local rotationVector = Tool.Angle.Value
- local denom = math.abs(rotationVector.x) + math.abs(rotationVector.z)
- local xDirect = (rotationVector.x/denom)
- local zDirect = (rotationVector.z/denom)
- local angle = math.atan2(1,0) - math.atan2(zDirect,xDirect)
- local point = Vector2.new(((posDiff.x - radarCenter.x) * math.cos(angle)) - ((posDiff.y - radarCenter.y) * math.sin(angle)) + radarCenter.x,
- ((posDiff.x - radarCenter.x) * math.sin(angle)) + ((posDiff.y - radarCenter.y) * math.cos(angle)) + radarCenter.y)
- createPlayerGUINode(point, playerTorso.Parent)
- elseif playerTorso.Parent.Name == torso.Parent.Name then
- createPlayerGUINode(radarCenter,playerTorso.Parent)
- end
- end
- end
- end
- while true do
- if guiEnabled then
- updateGUI()
- end
- wait()
- end
- end))
- Script2.Name = "Weld"
- Script2.Parent = Tool0
- table.insert(cors,sandbox(Script2,function()
- local prev
- local parts = script.Parent:GetChildren()
- for i = 1,#parts do
- if (parts[i].className == "Part") then
- if (prev ~= nil)then
- local weld = Instance.new("Weld")
- weld.Part0 = prev
- weld.Part1 = parts[i]
- weld.C0 = prev.CFrame:inverse()
- weld.C1 = parts[i].CFrame:inverse()
- weld.Parent = prev
- end
- prev = parts[i]
- end
- end
- -- GROUP with other pieces names PART to wels them--
- -- BY DUNCAN999007 !!! --
- end))
- LocalScript3.Name = "Crouch"
- LocalScript3.Parent = Tool0
- table.insert(cors,sandbox(LocalScript3,function()
- on = 0
- Tool = script.Parent
- welds = {}
- sh = {}
- arms = nil
- torso = nil
- f = nil
- function Crouch(ison)
- if arms == nil and torso == nil then
- arms = {Tool.Parent:FindFirstChild("Left Leg"), Tool.Parent:FindFirstChild("Right Leg")}
- torso = Tool.Parent:FindFirstChild("Torso")
- end
- if arms ~= nil and torso ~= nil then
- sh = {torso:FindFirstChild("Left Hip"), torso:FindFirstChild("Right Hip")}
- if sh ~= nil then
- local yes = true
- if yes then
- yes = false
- script.Parent.Parent.Humanoid.WalkSpeed = 6
- if ison == 1 then
- sh[1].Part1 = nil
- sh[2].Part1 = nil
- local weld1 = Instance.new("Weld")
- weld1.Part0 = torso
- weld1.Parent = torso
- weld1.Part1 = arms[1]
- weld1.C1 = CFrame.new(0.5,0.495,1.25) * CFrame.fromEulerAnglesXYZ(math.rad(70),0,0)
- arms[1].Name = "LDave"
- arms[1].CanCollide = true
- welds[1] = weld1
- -------------------------------------------
- local weld2 = Instance.new("Weld")
- weld2.Part0 = torso
- weld2.Parent = torso
- weld2.Part1 = arms[2]
- weld2.C1 = CFrame.new(-0.5, 1.05, 1)
- arms[2].Name = "RDave"
- arms[2].CanCollide = true
- welds[2] = weld2
- ---------------------------------
- local force = Instance.new("BodyForce")
- force.Parent = torso
- f = force
- wait(0.01)
- elseif ison == 0 then
- if arms then
- sh[1].Part1 = arms[1]
- sh[2].Part1 = arms[2]
- f.Parent = nil
- arms[2].Name = "Right Leg"
- arms[1].Name = "Left Leg"
- welds[1].Parent = nil
- welds[2].Parent = nil
- script.Parent.Parent.Humanoid.WalkSpeed = 16
- end
- end
- --
- end
- else
- print("sh")
- end
- else
- print("arms")
- end
- end
- function Key(key)
- if key then
- key = string.lower(key)
- if (key=="c") then
- if on == 1 then
- on = 0
- elseif on == 0 then
- on = 1
- end
- Crouch(on)
- end
- end
- end
- function Equip(mouse)
- mouse.KeyDown:connect(Key)
- end
- script.Parent.Equipped:connect(Equip)
- end))
- Part4.Name = "Handle"
- Part4.Parent = Tool0
- Part4.BrickColor = BrickColor.new("Really black")
- Part4.Transparency = 1
- Part4.Rotation = Vector3.new(-0.349999994, 82.409996, 0.340000004)
- Part4.RotVelocity = Vector3.new(1, 1, 1)
- Part4.Velocity = Vector3.new(3.62274638e-20, 0.0197373424, 3.67036064e-20)
- Part4.FormFactor = Enum.FormFactor.Custom
- Part4.Size = Vector3.new(1.29999995, 0.200000003, 1.29999995)
- Part4.CFrame = CFrame.new(178.894455, 10.5462742, 78.6737823, 0.132082269, -0.000789297919, 0.991238415, 1.89434175e-21, 0.999999642, 0.000796274282, -0.991238654, -0.000105173727, 0.132082239)
- Part4.BottomSurface = Enum.SurfaceType.Smooth
- Part4.TopSurface = Enum.SurfaceType.Smooth
- Part4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
- Part4.Position = Vector3.new(178.894455, 10.5462742, 78.6737823)
- Part4.Orientation = Vector3.new(-0.049999997, 82.409996, 0)
- Part4.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
- Part5.Parent = Tool0
- Part5.BrickColor = BrickColor.new("Lime green")
- Part5.Rotation = Vector3.new(-149.039993, 6.05999994, 85.1899948)
- Part5.RotVelocity = Vector3.new(1, 1, 1)
- Part5.Velocity = Vector3.new(-0.909853935, 0.317009091, 0.612582207)
- Part5.FormFactor = Enum.FormFactor.Custom
- Part5.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
- Part5.CFrame = CFrame.new(178.941162, 11.2055645, 78.4232178, 0.0833834484, -0.990912914, 0.105513014, -0.859074652, -0.0178202912, 0.511541486, -0.505012572, -0.133298188, -0.852753341)
- Part5.BottomSurface = Enum.SurfaceType.Smooth
- Part5.TopSurface = Enum.SurfaceType.Smooth
- Part5.Color = Color3.new(0, 1, 0)
- Part5.Position = Vector3.new(178.941162, 11.2055645, 78.4232178)
- Part5.Orientation = Vector3.new(-30.7699986, 172.949997, -91.1899948)
- Part5.Color = Color3.new(0, 1, 0)
- SpecialMesh6.Parent = Part5
- SpecialMesh6.MeshType = Enum.MeshType.Sphere
- Weld7.Parent = Part5
- Weld7.C0 = CFrame.new(-170.41539, -533.229431, -324.038239, 0.289127976, -0.859073997, 0.422370553, 0.80778712, -0.0178202353, -0.589204848, 0.513697207, 0.511541247, 0.68879658)
- Weld7.C1 = CFrame.new(-172.269226, 532.940918, 323.201477, 0.291406721, -0.859105229, 0.420737922, -0.807245016, 0.015141462, 0.590022206, -0.513261616, -0.511575103, -0.689096034)
- Weld7.Part0 = Part5
- Weld7.Part1 = Part8
- Part8.Parent = Tool0
- Part8.BrickColor = BrickColor.new("Dark stone grey")
- Part8.Rotation = Vector3.new(30.9599991, -6.08999968, -85.3499985)
- Part8.RotVelocity = Vector3.new(1, 1, 1)
- Part8.Velocity = Vector3.new(-0.0383605957, -0.0221098661, 0.0802078247)
- Part8.FormFactor = Enum.FormFactor.Custom
- Part8.Size = Vector3.new(1.29999995, 0.699999988, 1.29999995)
- Part8.CFrame = CFrame.new(178.891251, 10.6232786, 78.7124252, 0.0806085393, 0.991086781, -0.106034666, -0.859105766, 0.0151414713, -0.511575341, -0.505410016, 0.13233301, 0.852668405)
- Part8.BottomSurface = Enum.SurfaceType.Smooth
- Part8.TopSurface = Enum.SurfaceType.Smooth
- Part8.Color = Color3.new(0.388235, 0.372549, 0.384314)
- Part8.Position = Vector3.new(178.891251, 10.6232786, 78.7124252)
- Part8.Orientation = Vector3.new(30.7699986, -7.08999968, -88.9899979)
- Part8.Color = Color3.new(0.388235, 0.372549, 0.384314)
- CylinderMesh9.Parent = Part8
- Weld10.Parent = Part8
- Weld10.C0 = CFrame.new(-172.269226, 532.940918, 323.201477, 0.291406721, -0.859105229, 0.420737922, -0.807245016, 0.015141462, 0.590022206, -0.513261616, -0.511575103, -0.689096034)
- Weld10.C1 = CFrame.new(-172.265503, 532.93158, 323.208313, 0.291405737, -0.859106541, 0.420735925, -0.807226598, 0.0151593816, 0.590046883, -0.513291121, -0.511572361, -0.689076066)
- Weld10.Part0 = Part8
- Weld10.Part1 = Part11
- Part11.Parent = Tool0
- Part11.BrickColor = BrickColor.new("Really black")
- Part11.Rotation = Vector3.new(30.9599991, -6.07999992, -85.3499985)
- Part11.RotVelocity = Vector3.new(1, 1, 1)
- Part11.Velocity = Vector3.new(-0.022693634, -0.0378798246, 0.0803108215)
- Part11.FormFactor = Enum.FormFactor.Custom
- Part11.Size = Vector3.new(1.29999995, 1, 1.29999995)
- Part11.CFrame = CFrame.new(178.887375, 10.6195059, 78.7243195, 0.0806079358, 0.991090655, -0.105999544, -0.859106898, 0.0151593173, -0.51157254, -0.505407929, 0.132302478, 0.852674603)
- Part11.BottomSurface = Enum.SurfaceType.Smooth
- Part11.TopSurface = Enum.SurfaceType.Smooth
- Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
- Part11.Position = Vector3.new(178.887375, 10.6195059, 78.7243195)
- Part11.Orientation = Vector3.new(30.7699986, -7.08999968, -88.9899979)
- Part11.Color = Color3.new(0.0666667, 0.0666667, 0.0666667)
- CylinderMesh12.Parent = Part11
- CylinderMesh12.Scale = Vector3.new(1, 0.899999976, 0.899999976)
- CylinderMesh12.Scale = Vector3.new(1, 0.899999976, 0.899999976)
- Weld13.Parent = Part11
- Weld13.C0 = CFrame.new(-172.265503, 532.93158, 323.208313, 0.291405737, -0.859106541, 0.420735925, -0.807226598, 0.0151593816, 0.590046883, -0.513291121, -0.511572361, -0.689076066)
- Weld13.C1 = CFrame.new(532.900024, 323.17749, -171.614395, -0.8072083, 0.0151806744, 0.590071201, -0.513320565, -0.511573255, -0.689053476, 0.291404396, -0.859105647, 0.420738757)
- Weld13.Part0 = Part11
- Weld13.Part1 = Part35
- Part14.Parent = Tool0
- Part14.BrickColor = BrickColor.new("Lime green")
- Part14.Rotation = Vector3.new(-149.039993, 6.05999994, 85.1899948)
- Part14.RotVelocity = Vector3.new(1, 1, 1)
- Part14.Velocity = Vector3.new(-0.134896278, -0.106918216, 0.261551857)
- Part14.FormFactor = Enum.FormFactor.Custom
- Part14.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
- Part14.CFrame = CFrame.new(179.24559, 11.1589775, 79.1515884, 0.0833817348, -0.990912735, 0.105519615, -0.859077692, -0.0178160593, 0.511535466, -0.505006969, -0.133303046, -0.852756619)
- Part14.BottomSurface = Enum.SurfaceType.Smooth
- Part14.TopSurface = Enum.SurfaceType.Smooth
- Part14.Color = Color3.new(0, 1, 0)
- Part14.Position = Vector3.new(179.24559, 11.1589775, 79.1515884)
- Part14.Orientation = Vector3.new(-30.7699986, 172.949997, -91.1899948)
- Part14.Color = Color3.new(0, 1, 0)
- SpecialMesh15.Parent = Part14
- SpecialMesh15.MeshType = Enum.MeshType.Sphere
- Weld16.Parent = Part14
- Weld16.C0 = CFrame.new(-170.111206, -532.832886, -323.423004, 0.289125323, -0.859077632, 0.422365129, 0.807789922, -0.0178161468, -0.589201033, 0.513694286, 0.511535287, 0.688803077)
- Weld16.C1 = CFrame.new(-172.264771, 532.681702, 323.207642, 0.291405678, -0.859106481, 0.420736104, -0.807226598, 0.0151594486, 0.590046763, -0.513291121, -0.51157248, -0.689075947)
- Weld16.Part0 = Part14
- Weld16.Part1 = Part17
- Part17.Parent = Tool0
- Part17.BrickColor = BrickColor.new("Institutional white")
- Part17.Rotation = Vector3.new(30.9599991, -6.07999992, -85.3499985)
- Part17.RotVelocity = Vector3.new(1, 1, 1)
- Part17.Velocity = Vector3.new(0.00685405731, 0.175552487, -0.162669182)
- Part17.FormFactor = Enum.FormFactor.Custom
- Part17.Size = Vector3.new(1.29999995, 0.200000003, 1.29999995)
- Part17.CFrame = CFrame.new(179.134491, 10.6236572, 78.7580185, 0.0806081593, 0.991091251, -0.105999619, -0.859106421, 0.0151593955, -0.511572599, -0.505408049, 0.132302582, 0.852675021)
- Part17.BottomSurface = Enum.SurfaceType.Smooth
- Part17.TopSurface = Enum.SurfaceType.Smooth
- Part17.Color = Color3.new(0.972549, 0.972549, 0.972549)
- Part17.Position = Vector3.new(179.134491, 10.6236572, 78.7580185)
- Part17.Orientation = Vector3.new(30.7699986, -7.08999968, -88.9899979)
- Part17.Color = Color3.new(0.972549, 0.972549, 0.972549)
- CylinderMesh18.Parent = Part17
- CylinderMesh18.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
- CylinderMesh18.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
- Weld19.Parent = Part17
- Weld19.C0 = CFrame.new(-172.264771, 532.681702, 323.207642, 0.291405678, -0.859106481, 0.420736104, -0.807226598, 0.0151594486, 0.590046763, -0.513291121, -0.51157248, -0.689075947)
- Weld19.C1 = CFrame.new(-172.26474, 533.181824, 323.207336, 0.291405767, -0.859105647, 0.420737743, -0.807226777, 0.0151602263, 0.590046287, -0.513290644, -0.511573911, -0.689075291)
- Weld19.Part0 = Part17
- Weld19.Part1 = Part20
- Part20.Parent = Tool0
- Part20.BrickColor = BrickColor.new("Institutional white")
- Part20.Rotation = Vector3.new(30.9599991, -6.07999992, -85.3499985)
- Part20.RotVelocity = Vector3.new(1, 1, 1)
- Part20.Velocity = Vector3.new(-0.0517883301, -0.253944278, 0.325469971)
- Part20.FormFactor = Enum.FormFactor.Custom
- Part20.Size = Vector3.new(1.29999995, 0.200000003, 1.29999995)
- Part20.CFrame = CFrame.new(178.638824, 10.6161299, 78.6918488, 0.0806092694, 0.991091549, -0.105999611, -0.859105408, 0.0151601713, -0.51157397, -0.50540942, 0.132303044, 0.852674484)
- Part20.BottomSurface = Enum.SurfaceType.Smooth
- Part20.TopSurface = Enum.SurfaceType.Smooth
- Part20.Color = Color3.new(0.972549, 0.972549, 0.972549)
- Part20.Position = Vector3.new(178.638824, 10.6161299, 78.6918488)
- Part20.Orientation = Vector3.new(30.7699986, -7.08999968, -88.9899979)
- Part20.Color = Color3.new(0.972549, 0.972549, 0.972549)
- CylinderMesh21.Parent = Part20
- CylinderMesh21.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
- CylinderMesh21.Scale = Vector3.new(1.00999999, 1.00999999, 1.00999999)
- Weld22.Parent = Part20
- Weld22.C0 = CFrame.new(-172.26474, 533.181824, 323.207336, 0.291405767, -0.859105647, 0.420737743, -0.807226777, 0.0151602263, 0.590046287, -0.513290644, -0.511573911, -0.689075291)
- Weld22.C1 = CFrame.new(-170.099579, -533.233215, -323.821899, 0.289125443, -0.859077156, 0.422365814, 0.807789981, -0.0178164262, -0.589200735, 0.513693988, 0.511536062, 0.688802719)
- Weld22.Part0 = Part20
- Weld22.Part1 = Part23
- Part23.Parent = Tool0
- Part23.BrickColor = BrickColor.new("Lime green")
- Part23.Rotation = Vector3.new(-149.039993, 6.05999994, 85.1899948)
- Part23.RotVelocity = Vector3.new(1, 1, 1)
- Part23.Velocity = Vector3.new(-0.72983551, -0.0746611357, 0.824234009)
- Part23.FormFactor = Enum.FormFactor.Custom
- Part23.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
- Part23.CFrame = CFrame.new(178.890015, 11.3660841, 78.7637558, 0.0833821446, -0.990912914, 0.105519705, -0.859077096, -0.0178163648, 0.511536241, -0.505007625, -0.13330327, -0.8527565)
- Part23.BottomSurface = Enum.SurfaceType.Smooth
- Part23.TopSurface = Enum.SurfaceType.Smooth
- Part23.Color = Color3.new(0, 1, 0)
- Part23.Position = Vector3.new(178.890015, 11.3660841, 78.7637558)
- Part23.Orientation = Vector3.new(-30.7699986, 172.949997, -91.1899948)
- Part23.Color = Color3.new(0, 1, 0)
- SpecialMesh24.Parent = Part23
- SpecialMesh24.MeshType = Enum.MeshType.Sphere
- Weld25.Parent = Part23
- Weld25.C0 = CFrame.new(-170.099579, -533.233215, -323.821899, 0.289125443, -0.859077156, 0.422365814, 0.807789981, -0.0178164262, -0.589200735, 0.513693988, 0.511536062, 0.688802719)
- Weld25.C1 = CFrame.new(-532.912415, 171.603561, -323.156708, 0.807227254, -0.0151615478, -0.590045691, -0.291404128, 0.859105825, -0.420738071, 0.513290882, 0.511573255, 0.68907553)
- Weld25.Part0 = Part23
- Weld25.Part1 = Part26
- Part26.Parent = Tool0
- Part26.BrickColor = BrickColor.new("Dark stone grey")
- Part26.Rotation = Vector3.new(-149.039993, 6.07999992, 175.349991)
- Part26.RotVelocity = Vector3.new(1, 1, 1)
- Part26.Velocity = Vector3.new(-0.184276581, -0.457717776, 0.66173172)
- Part26.FormFactor = Enum.FormFactor.Custom
- Part26.Size = Vector3.new(1, 0.200000003, 1)
- Part26.CFrame = CFrame.new(178.847839, 11.1614065, 79.1046371, -0.991090655, -0.0806105435, 0.105999455, -0.0151615301, 0.859105885, 0.511573553, -0.132303849, 0.505408287, -0.852674425)
- Part26.BottomSurface = Enum.SurfaceType.Smooth
- Part26.TopSurface = Enum.SurfaceType.Smooth
- Part26.Color = Color3.new(0.388235, 0.372549, 0.384314)
- Part26.Position = Vector3.new(178.847839, 11.1614065, 79.1046371)
- Part26.Orientation = Vector3.new(-30.7699986, 172.910004, -1.00999999)
- Part26.Color = Color3.new(0.388235, 0.372549, 0.384314)
- CylinderMesh27.Parent = Part26
- CylinderMesh27.Scale = Vector3.new(1, 0.699999988, 0.699999988)
- CylinderMesh27.Scale = Vector3.new(1, 0.699999988, 0.699999988)
- Decal28.Parent = Part26
- Decal28.Texture = "http://www.roblox.com/asset/?id=33533210"
- Decal28.Face = Enum.NormalId.Top
- Weld29.Parent = Part26
- Weld29.C0 = CFrame.new(-532.912415, 171.603561, -323.156708, 0.807227254, -0.0151615478, -0.590045691, -0.291404128, 0.859105825, -0.420738071, 0.513290882, 0.511573255, 0.68907553)
- Weld29.C1 = CFrame.new(-170.10025, -533.233582, -323.022034, 0.289125413, -0.859077096, 0.422365695, 0.807789981, -0.0178162884, -0.589200795, 0.513693988, 0.511535883, 0.688802779)
- Weld29.Part0 = Part26
- Weld29.Part1 = Part30
- Part30.Parent = Tool0
- Part30.BrickColor = BrickColor.new("Lime green")
- Part30.Rotation = Vector3.new(-149.039993, 6.05999994, 85.1899948)
- Part30.RotVelocity = Vector3.new(1, 1, 1)
- Part30.Velocity = Vector3.new(0.361769676, -0.840919375, 0.498887062)
- Part30.FormFactor = Enum.FormFactor.Custom
- Part30.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
- Part30.CFrame = CFrame.new(178.805695, 10.9564171, 79.445694, 0.0833818987, -0.990912199, 0.105519548, -0.859077036, -0.0178162493, 0.511536241, -0.505007088, -0.133303285, -0.852756083)
- Part30.BottomSurface = Enum.SurfaceType.Smooth
- Part30.TopSurface = Enum.SurfaceType.Smooth
- Part30.Color = Color3.new(0, 1, 0)
- Part30.Position = Vector3.new(178.805695, 10.9564171, 79.445694)
- Part30.Orientation = Vector3.new(-30.7699986, 172.949997, -91.1899948)
- Part30.Color = Color3.new(0, 1, 0)
- SpecialMesh31.Parent = Part30
- SpecialMesh31.MeshType = Enum.MeshType.Sphere
- Weld32.Parent = Part30
- Weld32.C0 = CFrame.new(-170.10025, -533.233582, -323.022034, 0.289125413, -0.859077096, 0.422365695, 0.807789981, -0.0178162884, -0.589200795, 0.513693988, 0.511535883, 0.688802779)
- Weld32.C1 = CFrame.new(-170.099625, -533.633484, -323.422668, 0.289125383, -0.859077215, 0.422365516, 0.807789981, -0.017816199, -0.589200795, 0.513693988, 0.511535704, 0.688802898)
- Weld32.Part0 = Part30
- Weld32.Part1 = Part33
- Part33.Parent = Tool0
- Part33.BrickColor = BrickColor.new("Lime green")
- Part33.Rotation = Vector3.new(-149.039993, 6.05999994, 85.1899948)
- Part33.RotVelocity = Vector3.new(1, 1, 1)
- Part33.Velocity = Vector3.new(-0.231059074, -0.800330997, 1.05112743)
- Part33.FormFactor = Enum.FormFactor.Custom
- Part33.Size = Vector3.new(0.200000048, 0.200000003, 0.200000003)
- Part33.CFrame = CFrame.new(178.451813, 11.1547756, 79.0512238, 0.0833817795, -0.990911841, 0.105519556, -0.859077036, -0.0178160928, 0.511535943, -0.505006671, -0.133303285, -0.852755904)
- Part33.BottomSurface = Enum.SurfaceType.Smooth
- Part33.TopSurface = Enum.SurfaceType.Smooth
- Part33.Color = Color3.new(0, 1, 0)
- Part33.Position = Vector3.new(178.451813, 11.1547756, 79.0512238)
- Part33.Orientation = Vector3.new(-30.7699986, 172.949997, -91.1899948)
- Part33.Color = Color3.new(0, 1, 0)
- SpecialMesh34.Parent = Part33
- SpecialMesh34.MeshType = Enum.MeshType.Sphere
- Part35.Name = "Ring"
- Part35.Parent = Tool0
- Part35.BrickColor = BrickColor.new("Dark stone grey")
- Part35.Reflectance = 0.10000000149012
- Part35.Rotation = Vector3.new(120.469994, 4.61999989, 6.0999999)
- Part35.RotVelocity = Vector3.new(1, 1, 1)
- Part35.Velocity = Vector3.new(-0.181603432, -0.449821353, 0.651162148)
- Part35.FormFactor = Enum.FormFactor.Custom
- Part35.Size = Vector3.new(1, 1, 0.200000003)
- Part35.CFrame = CFrame.new(178.849655, 11.1526375, 79.0985413, 0.991094172, -0.105962701, 0.0806108043, 0.0151806744, -0.511573493, -0.859106123, 0.132272258, 0.852678478, -0.505409002)
- Part35.TopSurface = Enum.SurfaceType.Smooth
- Part35.Color = Color3.new(0.388235, 0.372549, 0.384314)
- Part35.Position = Vector3.new(178.849655, 11.1526375, 79.0985413)
- Part35.Orientation = Vector3.new(59.2199974, 170.940002, 178.300003)
- Part35.Color = Color3.new(0.388235, 0.372549, 0.384314)
- SpecialMesh36.Parent = Part35
- SpecialMesh36.MeshId = "http://www.roblox.com/asset/?id=3270017"
- SpecialMesh36.Scale = Vector3.new(0.800000012, 0.800000012, 1)
- SpecialMesh36.MeshType = Enum.MeshType.FileMesh
- SpecialMesh36.Scale = Vector3.new(0.800000012, 0.800000012, 1)
- Fire37.Parent = Part35
- Fire37.Size = 2
- Fire37.Color = Color3.new(0, 1, 0)
- Fire37.Heat = 1
- Fire37.SecondaryColor = Color3.new(1, 1, 1)
- Fire37.Color = Color3.new(0, 1, 0)
- ScreenGui38.Name = "OmniGui"
- ScreenGui38.Parent = Tool0
- Frame39.Parent = ScreenGui38
- Frame39.Size = UDim2.new(1, 0, 1, 0)
- Frame39.Position = UDim2.new(0, 10, 0, 10)
- Frame39.BackgroundColor3 = Color3.new(1, 1, 1)
- ImageButton40.Name = "Alien"
- ImageButton40.Parent = Frame39
- ImageButton40.Size = UDim2.new(0, 100, 0, 100)
- ImageButton40.Position = UDim2.new(0, 10, 0, 10)
- ImageButton40.BackgroundColor3 = Color3.new(1, 1, 1)
- ImageButton40.Image = "rbxassetid://133293265"
- Configuration41.Name = "Configure"
- Configuration41.Parent = ImageButton40
- Script42.Name = "(Read This)"
- Script42.Parent = Configuration41
- table.insert(cors,sandbox(Script42,function()
- --[[
- AName is the Alien Name
- Decal is the Decal ID for the Alien
- Powers is the powers of the alien (Put tools inside)
- Shirt is the Shirt Template for the Alien
- Pants is the Pants Template for the Alien
- Hats is the hats for the alien (Put hats inside)
- Skin is the alien skin color
- Face is the alien face
- ]]--
- end))
- StringValue43.Name = "AName"
- StringValue43.Parent = Configuration41
- StringValue43.Value = "Swampfire"
- StringValue44.Name = "Decal"
- StringValue44.Parent = Configuration41
- StringValue44.Value = "33275099"
- StringValue45.Name = "Hats"
- StringValue45.Parent = Configuration41
- Part46.Name = "Diego el Fuego"
- Part46.Parent = StringValue45
- Part46.Anchored = true
- Part46.FormFactor = Enum.FormFactor.Symmetric
- Part46.Size = Vector3.new(1, 2, 2)
- Part46.CFrame = CFrame.new(179.100006, 1, 68.0999985, 1, 0, 0, 0, 1, 0, 0, 0, 1)
- Part46.BottomSurface = Enum.SurfaceType.Smooth
- Part46.TopSurface = Enum.SurfaceType.Smooth
- Part46.Position = Vector3.new(179.100006, 1, 68.0999985)
- Script47.Parent = Part46
- table.insert(cors,sandbox(Script47,function()
- -- (Hat Giver Script - Loaded.)
- debounce = true
- function onTouched(hit)
- if (hit.Parent:findFirstChild("Humanoid") ~= nil and debounce == true) then
- debounce = false
- h = Instance.new("Hat")
- p = Instance.new("Part")
- h.Name = "Flameface"
- p.Parent = h
- p.Position = hit.Parent:findFirstChild("Head").Position
- p.Name = "Handle"
- p.formFactor = 0
- p.Size = Vector3.new(1,2,2)
- p.BottomSurface = 0
- p.TopSurface = 0
- p.Locked = true
- script.Parent.Mesh:clone().Parent = p
- h.Parent = hit.Parent
- h.AttachmentForward = Vector3.new(-0, -0, -1)
- h.AttachmentPos = Vector3.new(0, 0.05, 0.7)
- h.AttachmentRight = Vector3.new(1, 0, 0)
- h.AttachmentUp = Vector3.new(0, 1, 0)
- wait(5)
- debounce = true
- end
- end
- script.Parent.Touched:connect(onTouched)
- end))
- SpecialMesh48.Parent = Part46
- SpecialMesh48.MeshId = "http://www.roblox.com/asset/?id=19367180"
- SpecialMesh48.Scale = Vector3.new(1.10000002, 1, 1)
- SpecialMesh48.TextureId = "http://www.roblox.com/asset/?id=19367173"
- SpecialMesh48.MeshType = Enum.MeshType.FileMesh
- SpecialMesh48.Scale = Vector3.new(1.10000002, 1, 1)
- StringValue49.Name = "Pants"
- StringValue49.Parent = Configuration41
- StringValue49.Value = "114714864"
- StringValue50.Name = "Powers"
- StringValue50.Parent = Configuration41
- StringValue50.Value = "16331711"
- StringValue51.Name = "Shirt"
- StringValue51.Parent = Configuration41
- StringValue51.Value = "114714806"
- StringValue52.Name = "Skin"
- StringValue52.Parent = Configuration41
- StringValue52.Value = "Really Red"
- StringValue53.Name = "Face"
- StringValue53.Parent = Configuration41
- StringValue53.Value = "0"
- TextLabel54.Name = "AName"
- TextLabel54.Parent = ImageButton40
- TextLabel54.Transparency = 1
- TextLabel54.Size = UDim2.new(0, 100, 0, 20)
- TextLabel54.Text = "Name"
- TextLabel54.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel54.BackgroundTransparency = 1
- TextLabel54.Font = Enum.Font.SourceSans
- TextLabel54.FontSize = Enum.FontSize.Size14
- TextLabel54.TextColor3 = Color3.new(1, 1, 1)
- TextLabel54.TextStrokeTransparency = 0
- LocalScript55.Name = "Main"
- LocalScript55.Parent = ImageButton40
- table.insert(cors,sandbox(LocalScript55,function()
- Stuff = script.Parent.Configure
- Me = script.Parent.Parent.Parent.Parent.Parent
- Character = Me.Character
- ---------------------------------------------------------------
- script.Parent.AName.Text = Stuff.AName.Value
- script.Parent.Name = Stuff.AName.Value
- script.Parent.Image = "rbxassetid://"..Stuff.Decal.Value
- function onClicked()
- --------------------[POWERS]-----------------------------------
- local d1 = Stuff.Powers:GetChildren()
- for i=1, #d1 do
- l = d1[i]:Clone()
- l.Parent = Me.Backpack
- end
- --------------------[CLOTHES]----------------------------------
- Character:findFirstChild("Shirt"):Remove()
- Character:findFirstChild("Pants"):Remove()
- shirt = Instance.new("Shirt")
- shirt.Name = "Shirt"
- shirt.Parent = Character
- shirt.ShirtTemplate = "rbxassetid://"..Stuff.Shirt.Value
- pants = Instance.new("Pants")
- pants.Parent = Character
- pants.Name = "Pants"
- pants.PantsTemplate = "rbxassetid://"..Stuff.Pants.Value
- --------------------[HATS]------------------------------------
- local d2 = Character:GetChildren()
- for i=1, #d2 do
- if (d2[i].className == "Hat") then
- d2[i]:remove()
- end
- end
- local d1 = Stuff.Hats:GetChildren()
- for i=1, #d1 do
- l = d1[i]:Clone()
- l.Parent = Character
- end
- --------------------[SKIN]------------------------------------
- Character.Head:findFirstChild("face").Texture = Stuff.Face.Value
- Character:findFirstChild("Head").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Torso").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Left Arm").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Right Arm").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Left Leg").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Right Leg").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").HeadColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").TorsoColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").LeftArmColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").LeftLegColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").RightArmColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").RightLegColor = BrickColor.new(Stuff.Skin.Value)
- ----------------------------------------------------------------------------------
- script.Parent.Parent.Visible = false
- end
- script.Parent.MouseButton1Down:connect(onClicked)
- end))
- ImageButton56.Name = "Alien"
- ImageButton56.Parent = Frame39
- ImageButton56.Size = UDim2.new(0, 100, 0, 100)
- ImageButton56.Position = UDim2.new(0, 100, 0, 100)
- ImageButton56.BackgroundColor3 = Color3.new(1, 1, 1)
- ImageButton56.Image = "rbxassetid://113107287"
- Configuration57.Name = "Configure"
- Configuration57.Parent = ImageButton56
- Script58.Name = "(Read This)"
- Script58.Parent = Configuration57
- table.insert(cors,sandbox(Script58,function()
- --[[
- AName is the Alien Name
- Decal is the Decal ID for the Alien
- Powers is the powers of the alien (Put tools inside)
- Shirt is the Shirt Template for the Alien
- Pants is the Pants Template for the Alien
- Hats is the hats for the alien (Put hats inside)
- Skin is the alien skin color
- Face is the alien face
- ]]--
- end))
- StringValue59.Name = "AName"
- StringValue59.Parent = Configuration57
- StringValue59.Value = "Heatblast"
- StringValue60.Name = "Decal"
- StringValue60.Parent = Configuration57
- StringValue60.Value = "119203054"
- StringValue61.Name = "Hats"
- StringValue61.Parent = Configuration57
- Hat62.Name = "Hot Head"
- Hat62.Parent = StringValue61
- Hat62.AttachmentPos = Vector3.new(0, -0.819999993, 0)
- Part63.Name = "Handle"
- Part63.Parent = Hat62
- Part63.BrickColor = BrickColor.new("Cool yellow")
- Part63.Rotation = Vector3.new(-180, 89.9599991, -180)
- Part63.CanCollide = false
- Part63.Locked = true
- Part63.FormFactor = Enum.FormFactor.Symmetric
- Part63.Size = Vector3.new(1, 2, 2)
- Part63.CFrame = CFrame.new(197.509933, 1.67000198, 74.3800812, -5.96046448e-08, 0, 0.999999702, 0, 1, 0, -0.999999702, 0, -5.96046448e-08)
- Part63.BottomSurface = Enum.SurfaceType.Smooth
- Part63.TopSurface = Enum.SurfaceType.Smooth
- Part63.Color = Color3.new(0.992157, 0.917647, 0.552941)
- Part63.Position = Vector3.new(197.509933, 1.67000198, 74.3800812)
- Part63.Orientation = Vector3.new(0, 90, 0)
- Part63.Color = Color3.new(0.992157, 0.917647, 0.552941)
- SpecialMesh64.Parent = Part63
- SpecialMesh64.MeshId = "http://www.roblox.com/asset/?id=25212400"
- SpecialMesh64.Scale = Vector3.new(0.800000012, 0.800000012, 0.800000012)
- SpecialMesh64.VertexColor = Vector3.new(0, 0, 0)
- SpecialMesh64.MeshType = Enum.MeshType.FileMesh
- SpecialMesh64.Scale = Vector3.new(0.800000012, 0.800000012, 0.800000012)
- Hat65.Name = "BedHead"
- Hat65.Parent = StringValue61
- Hat65.AttachmentPos = Vector3.new(0, -0.150000006, -0.0500000007)
- Part66.Name = "Handle"
- Part66.Parent = Hat65
- Part66.BrickColor = BrickColor.new("Cool yellow")
- Part66.Rotation = Vector3.new(-180, 89.9599991, -180)
- Part66.CanCollide = false
- Part66.Locked = true
- Part66.FormFactor = Enum.FormFactor.Symmetric
- Part66.Size = Vector3.new(1, 2, 2)
- Part66.CFrame = CFrame.new(197.559921, 1.00000298, 74.3800812, -5.96046448e-08, 0, 0.999999702, 0, 1, 0, -0.999999702, 0, -5.96046448e-08)
- Part66.BottomSurface = Enum.SurfaceType.Smooth
- Part66.TopSurface = Enum.SurfaceType.Smooth
- Part66.Color = Color3.new(0.992157, 0.917647, 0.552941)
- Part66.Position = Vector3.new(197.559921, 1.00000298, 74.3800812)
- Part66.Orientation = Vector3.new(0, 90, 0)
- Part66.Color = Color3.new(0.992157, 0.917647, 0.552941)
- SpecialMesh67.Parent = Part66
- SpecialMesh67.MeshId = "http://www.roblox.com/asset/?id=19326912"
- SpecialMesh67.Scale = Vector3.new(1.04999995, 1.5, 1.04999995)
- SpecialMesh67.VertexColor = Vector3.new(0, 0, 0)
- SpecialMesh67.MeshType = Enum.MeshType.FileMesh
- SpecialMesh67.Scale = Vector3.new(1.04999995, 1.5, 1.04999995)
- StringValue68.Name = "Pants"
- StringValue68.Parent = Configuration57
- StringValue68.Value = "9625912"
- StringValue69.Name = "Powers"
- StringValue69.Parent = Configuration57
- StringValue70.Name = "Shirt"
- StringValue70.Parent = Configuration57
- StringValue70.Value = "14254693"
- StringValue71.Name = "Skin"
- StringValue71.Parent = Configuration57
- StringValue71.Value = "Cool yellow"
- StringValue72.Name = "Face"
- StringValue72.Parent = Configuration57
- StringValue72.Value = "58489023"
- TextLabel73.Name = "AName"
- TextLabel73.Parent = ImageButton56
- TextLabel73.Transparency = 1
- TextLabel73.Size = UDim2.new(0, 100, 0, 20)
- TextLabel73.Text = "Name"
- TextLabel73.BackgroundColor3 = Color3.new(1, 1, 1)
- TextLabel73.BackgroundTransparency = 1
- TextLabel73.Font = Enum.Font.SourceSans
- TextLabel73.FontSize = Enum.FontSize.Size14
- TextLabel73.TextColor3 = Color3.new(1, 1, 1)
- TextLabel73.TextStrokeTransparency = 0
- LocalScript74.Name = "Main"
- LocalScript74.Parent = ImageButton56
- table.insert(cors,sandbox(LocalScript74,function()
- Stuff = script.Parent.Configure
- Me = script.Parent.Parent.Parent.Parent.Parent
- Character = Me.Character
- ---------------------------------------------------------------
- script.Parent.AName.Text = Stuff.AName.Value
- script.Parent.Name = Stuff.AName.Value
- script.Parent.Image = "rbxassetid://"..Stuff.Decal.Value
- function onClicked()
- --------------------[POWERS]-----------------------------------
- local d1 = Stuff.Powers:GetChildren()
- for i=1, #d1 do
- l = d1[i]:Clone()
- l.Parent = Me.Backpack
- end
- --------------------[CLOTHES]----------------------------------
- Character:findFirstChild("Shirt"):Remove()
- Character:findFirstChild("Pants"):Remove()
- shirt = Instance.new("Shirt")
- shirt.Name = "Shirt"
- shirt.Parent = Character
- shirt.ShirtTemplate = "rbxassetid://"..Stuff.Shirt.Value
- pants = Instance.new("Pants")
- pants.Parent = Character
- pants.Name = "Pants"
- pants.PantsTemplate = "rbxassetid://"..Stuff.Pants.Value
- --------------------[HATS]------------------------------------
- local d2 = Character:GetChildren()
- for i=1, #d2 do
- if (d2[i].className == "Hat") then
- d2[i]:remove()
- end
- end
- local d1 = Stuff.Hats:GetChildren()
- for i=1, #d1 do
- l = d1[i]:Clone()
- l.Parent = Character
- end
- --------------------[SKIN]------------------------------------
- Character.Head:findFirstChild("face").Texture = Stuff.Face.Value
- Character:findFirstChild("Head").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Torso").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Left Arm").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Right Arm").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Left Leg").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Right Leg").BrickColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").HeadColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").TorsoColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").LeftArmColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").LeftLegColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").RightArmColor = BrickColor.new(Stuff.Skin.Value)
- Character:findFirstChild("Body Colors").RightLegColor = BrickColor.new(Stuff.Skin.Value)
- ----------------------------------------------------------------------------------
- script.Parent.Parent.Visible = false
- end
- script.Parent.MouseButton1Down:connect(onClicked)
- end))
- for i,v in pairs(mas:GetChildren()) do
- v.Parent = game:GetService("Players").LocalPlayer.Backpack
- pcall(function() v:MakeJoints() end)
- end
- mas:Destroy()
- for i,v in pairs(cors) do
- spawn(function()
- pcall(v)
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment