|
| 27 Sep 2010 08:52 PM |
My first script builder script is an invisible script. ITZ AWEZUM. just replace epicfail22 with your characters name.
REPLACE "epicfail22" with your name!
epic = game.Workspace.epicfail22 torso = epic.Torso head = epic.Head leftarm = epic["Left Arm"] rightarm = epic["Right Arm"] leftleg = epic["Left Leg"] rightleg = epic["Right Leg"] head.Transparency = 1 rightarm.Transparency = 1 leftarm.Transparency = 1 rightleg.Transparency = 1 leftleg.Transparency = 1 torso.Transparency = 1 |
|
|
| Report Abuse |
|
|
L2000
|
  |
| Joined: 03 Apr 2008 |
| Total Posts: 77448 |
|
|
| 27 Sep 2010 08:56 PM |
Giant hats:
plyr = "YourName" --Your username in the "YourName" spot. sizex = 50 --Size of the x. sizey = 50 --Size of the y. sizez = 50 --Size of the z. c = workspace:FindFirstChild(plyr) if not c then return end p = c:GetChildren() for i = 1,#p do if p[i].className=="Hat" then p[i].Handle.Mesh.Scale = Vector3.new(sizex, sizey, sizez) end end |
|
|
| Report Abuse |
|
|
|
| 27 Sep 2010 09:09 PM |
Visible script.
epic = game.Workspace.epicfail22 torso = epic.Torso head = epic.Head leftarm = epic["Left Arm"] rightarm = epic["Right Arm"] leftleg = epic["Left Leg"] rightleg = epic["Right Leg"] head.Transparency = 0 rightarm.Transparency = 0 leftarm.Transparency = 0 rightleg.Transparency = 0 leftleg.Transparency = 0 torso.Transparency = 0 |
|
|
| Report Abuse |
|
|
|
| 13 Dec 2010 11:33 AM |
Build tools script-
local clone = Instance.new("HopperBin") clone.BinType = "Clone" clone.Parent = game.Players.epicfail2.Backpack local delete = Instance.new("HopperBin") delete.BinType = "Hammer" delete.Parent = game.Players.epicfail2.Backpack local drag = Instance.new("HopperBin") drag.BinType = "GameTool" drag.Parent = game.Players.epicfail2.Backpack |
|
|
| Report Abuse |
|
|
| |
|
|
| 13 Dec 2010 11:36 AM |
epic,im posting here kater. (For a friends only door script) |
|
|
| Report Abuse |
|
|
|
| 13 Dec 2010 11:50 AM |
clear script-
stuff = game.Workspace:GetChildren()
for i = 1 #stuff do if stuff[i].Name ~= "Base" then stuff[i]:remove() end end
hopefully works. |
|
|
| Report Abuse |
|
|
|
| 13 Dec 2010 12:31 PM |
function onTouched(hit) char = hit.Parent if char:FindFirstChild("Humanoid") ~= nil then player = game.Players:GetPlayerFromCharacter(char) if player:IsFriendsWith(game.CreatorId) or player.userId == game.CreatorId then script.Parent.Transparency = 0.9 script.Parent.CanCollide = false wait(3) script.Parent.Transparency = 0 script.Parent.CanCollide = true else head = char:FindFirstChild("Head") if head ~= nil then head:Remove() end end end end
script.Parent.Touched:connect(onTouched) |
|
|
| Report Abuse |
|
|
| |
|
Modlike
|
  |
| Joined: 05 Dec 2010 |
| Total Posts: 1475 |
|
| |
|
|
| 21 Dec 2010 08:31 AM |
| thanks sepiroth that is an awesome script! |
|
|
| Report Abuse |
|
|
| |
|
| |
|
|
| 29 Jan 2011 08:32 PM |
-Hat remove script
Contents = game.Workspace.epicfail22:GetChildren() for i = 1, #Contents do if Contents[i].className = "Hat" then Contents[i]:remove() end end
|
|
|
| Report Abuse |
|
|
abdula6
|
  |
| Joined: 22 Dec 2014 |
| Total Posts: 1 |
|
|
| 29 Jan 2015 12:05 PM |
| there is a problem with the workspace |
|
|
| Report Abuse |
|
|